vscode-extensions.github.copilot{*}: bump (#364729)
[NixPkgs.git] / pkgs / development / python-modules / intelhex / default.nix
blob7cb117943ed731434434a648d5553ab17ca153fa
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pytestCheckHook,
6 }:
8 buildPythonPackage rec {
9   pname = "intelhex";
10   version = "2.3.0";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-iStzYacZ9JRSN9qMz3VOlRPbMvViiFJ4WuoQjc0lAJM=";
16   };
18   nativeCheckInputs = [ pytestCheckHook ];
20   pytestFlagsArray = [ "intelhex/test.py" ];
22   pythonImportsCheck = [ "intelhex" ];
24   meta = {
25     homepage = "https://github.com/bialix/intelhex";
26     description = "Python library for Intel HEX files manipulations";
27     license = lib.licenses.bsd3;
28     maintainers = with lib.maintainers; [ pjones ];
29   };