Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / pypemicro / default.nix
blob6accd0e94343ac58788e8e039f4b18b05c626f07
1 { lib, buildPythonPackage, fetchPypi, autoPatchelfHook }:
3 buildPythonPackage rec {
4   pname = "pypemicro";
5   version = "0.1.11";
7   src = fetchPypi {
8     inherit pname version;
9     hash = "sha256-KE085u9yIPsuEr41GNWwHFm6KAHggvqGqP9ChGRoLE0=";
10   };
12   pythonImportsCheck = [ "pypemicro" ];
14   # tests are neither pytest nor unittest compatible and require a device
15   # connected via USB
16   doCheck = false;
18   meta = with lib; {
19     description = "Python interface for PEMicro debug probes";
20     homepage = "https://github.com/NXPmicro/pypemicro";
21     license = with licenses; [ bsd3 unfree ]; # it includes shared libraries for which no license is available (https://github.com/NXPmicro/pypemicro/issues/10)
22     maintainers = with maintainers; [ frogamic sbruder ];
23   };