Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / intelhex / default.nix
blob4e25fa8793b19c96d354be1135df9a1c83015d19
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 }:
7 buildPythonPackage rec {
8   pname = "intelhex";
9   version = "2.3.0";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-iStzYacZ9JRSN9qMz3VOlRPbMvViiFJ4WuoQjc0lAJM=";
15   };
17   nativeCheckInputs = [ pytestCheckHook ];
19   pytestFlagsArray = [ "intelhex/test.py" ];
21   pythonImportsCheck = [ "intelhex" ];
23   meta = {
24     homepage = "https://github.com/bialix/intelhex";
25     description = "Python library for Intel HEX files manipulations";
26     license = lib.licenses.bsd3;
27     maintainers = with lib.maintainers; [ pjones ];
28   };