Files
nixpkgs/pkgs/development/python-modules/pypemicro/default.nix
Marcin Serwin 990286f941 maintainers: drop frogamic
Signed-off-by: Marcin Serwin <marcin@serwin.dev>
2026-06-04 14:13:11 +02:00

34 lines
765 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "pypemicro";
version = "0.1.11";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-KE085u9yIPsuEr41GNWwHFm6KAHggvqGqP9ChGRoLE0=";
};
pythonImportsCheck = [ "pypemicro" ];
# tests are neither pytest nor unittest compatible and require a device
# connected via USB
doCheck = false;
meta = {
description = "Python interface for PEMicro debug probes";
homepage = "https://github.com/NXPmicro/pypemicro";
license = with lib.licenses; [
bsd3
unfree
]; # it includes shared libraries for which no license is available (https://github.com/NXPmicro/pypemicro/issues/10)
maintainers = [
];
};
}