python3Packages.pypemicro: init at 0.1.9

This commit is contained in:
Simon Bruder 2022-07-29 15:54:46 +02:00
parent 2e61922fc2
commit 3820a02714
No known key found for this signature in database
GPG key ID: 8D3C82F9F309F8EC
2 changed files with 26 additions and 0 deletions

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

View file

@ -6659,6 +6659,8 @@ in {
psrpcore = callPackage ../development/python-modules/psrpcore { }; psrpcore = callPackage ../development/python-modules/psrpcore { };
pypemicro = callPackage ../development/python-modules/pypemicro { };
pyprecice = callPackage ../development/python-modules/pyprecice { }; pyprecice = callPackage ../development/python-modules/pyprecice { };
pypsrp = callPackage ../development/python-modules/pypsrp { }; pypsrp = callPackage ../development/python-modules/pypsrp { };