summary refs log blame commit diff
path: root/pkgs/development/python-modules/intelhex/default.nix
blob: e5b0cc6fbc74693d70cf1c965794fa780d4b1fcc (plain) (tree)
1
2
3
4
5
6
7
8
9


                    
                 



                        
                    


                          
                                                                   

    




                                            

          
                                                    




                                                                     
{ 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 ];
  };
}