python3Packages.pypemicro: init at 0.1.9
This commit is contained in:
parent
2e61922fc2
commit
3820a02714
2 changed files with 26 additions and 0 deletions
24
pkgs/development/python-modules/pypemicro/default.nix
Normal file
24
pkgs/development/python-modules/pypemicro/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, autoPatchelfHook }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pypemicro";
|
||||
version = "0.1.9";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-HouDBlqfokKhbdWWDCfaUJrqIEC5f+sSnVmsrRseFmU=";
|
||||
};
|
||||
|
||||
pythonImportsCheck = [ "pypemicro" ];
|
||||
|
||||
# tests are neither pytest nor unittest compatible and require a device
|
||||
# connected via USB
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python interface for PEMicro debug probes";
|
||||
homepage = "https://github.com/NXPmicro/pypemicro";
|
||||
license = with licenses; [ bsd3 unfree ]; # it includes shared libraries for which no license is available (https://github.com/NXPmicro/pypemicro/issues/10)
|
||||
maintainers = with maintainers; [ frogamic sbruder ];
|
||||
};
|
||||
}
|
|
@ -6659,6 +6659,8 @@ in {
|
|||
|
||||
psrpcore = callPackage ../development/python-modules/psrpcore { };
|
||||
|
||||
pypemicro = callPackage ../development/python-modules/pypemicro { };
|
||||
|
||||
pyprecice = callPackage ../development/python-modules/pyprecice { };
|
||||
|
||||
pypsrp = callPackage ../development/python-modules/pypsrp { };
|
||||
|
|
Loading…
Reference in a new issue