python3Packages.pycayennelpp: init at 2.4.0

This commit is contained in:
Haylin Moore
2025-08-09 13:22:39 -07:00
parent 52a68497b4
commit e56b72e772
2 changed files with 37 additions and 0 deletions
@@ -0,0 +1,35 @@
{
lib,
python3Packages,
fetchPypi,
}:
python3Packages.buildPythonPackage rec {
pname = "pycayennelpp";
version = "2.4.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "1cc6lz28aa57gs74767xyd3i370lwx046yb5a1nfch6fk3kf7xdx";
};
nativeBuildInputs = with python3Packages; [
setuptools
];
# Patch setup.py to remove pytest-runner
postPatch = ''
substituteInPlace setup.py \
--replace '"pytest-runner"' ""
'';
doCheck = false;
meta = with lib; {
description = "Python library for Cayenne Low Power Payload";
homepage = "https://github.com/smlng/pycayennelpp";
license = licenses.mit;
maintainers = [ lib.maintainers.haylin ];
};
}
+2
View File
@@ -12499,6 +12499,8 @@ self: super: with self; {
pycategories = callPackage ../development/python-modules/pycategories { };
pycayennelpp = callPackage ../development/python-modules/pycayennelpp { };
pycddl = callPackage ../development/python-modules/pycddl { };
pycdio = callPackage ../development/python-modules/pycdio { };