fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
30 lines
636 B
Nix
30 lines
636 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "intelhex";
|
|
version = "2.3.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-iStzYacZ9JRSN9qMz3VOlRPbMvViiFJ4WuoQjc0lAJM=";
|
|
};
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pytestFlagsArray = [ "intelhex/test.py" ];
|
|
|
|
pythonImportsCheck = [ "intelhex" ];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/bialix/intelhex";
|
|
description = "Python library for Intel HEX files manipulations";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ pjones ];
|
|
};
|
|
}
|