Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / intelhex / default.nix
blobe5b0cc6fbc74693d70cf1c965794fa780d4b1fcc
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 }:
7 buildPythonPackage rec {
8   pname = "intelhex";
9   version = "2.3.0";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "sha256-iStzYacZ9JRSN9qMz3VOlRPbMvViiFJ4WuoQjc0lAJM=";
14   };
16   checkInputs = [ pytestCheckHook ];
18   pytestFlagsArray = [ "intelhex/test.py" ];
20   pythonImportsCheck = [ "intelhex" ];
22   meta = {
23     homepage = "https://github.com/bialix/intelhex";
24     description = "Python library for Intel HEX files manipulations";
25     license = lib.licenses.bsd3;
26     maintainers = with lib.maintainers; [ pjones ];
27   };