mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
29 lines
601 B
Nix
29 lines
601 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "intelhex";
|
|
version = "2.3.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-iStzYacZ9JRSN9qMz3VOlRPbMvViiFJ4WuoQjc0lAJM=";
|
|
};
|
|
|
|
checkInputs = [ 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 ];
|
|
};
|
|
}
|