python3Packages.pyW800rf32: init at 0.4 (#434271)
This commit is contained in:
commit
e2b334f6d7
34
pkgs/development/python-modules/pyw800rf32/default.nix
Normal file
34
pkgs/development/python-modules/pyw800rf32/default.nix
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{
|
||||||
|
lib,
|
||||||
|
buildPythonPackage,
|
||||||
|
fetchPypi,
|
||||||
|
setuptools,
|
||||||
|
pyserial,
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pyW800rf32";
|
||||||
|
version = "0.4";
|
||||||
|
pyproject = true;
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
hash = "sha256-i0XXqohKY5pWIjcOCUxUQdx/FSSqgTnTaWcDxnIYjMk=";
|
||||||
|
};
|
||||||
|
|
||||||
|
build-system = [ setuptools ];
|
||||||
|
|
||||||
|
dependencies = [ pyserial ];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "W800rf32" ];
|
||||||
|
|
||||||
|
# upstream has no tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Python library to communicate with the W800rf32 family of devices";
|
||||||
|
homepage = "https://github.com/horga83/pyW800rf32";
|
||||||
|
license = lib.licenses.lgpl3Plus;
|
||||||
|
maintainers = [ lib.maintainers.jamiemagee ];
|
||||||
|
};
|
||||||
|
}
|
@ -6471,7 +6471,8 @@
|
|||||||
];
|
];
|
||||||
"w800rf32" =
|
"w800rf32" =
|
||||||
ps: with ps; [
|
ps: with ps; [
|
||||||
]; # missing inputs: pyW800rf32
|
pyw800rf32
|
||||||
|
];
|
||||||
"wake_on_lan" =
|
"wake_on_lan" =
|
||||||
ps: with ps; [
|
ps: with ps; [
|
||||||
wakeonlan
|
wakeonlan
|
||||||
|
@ -15191,6 +15191,8 @@ self: super: with self; {
|
|||||||
|
|
||||||
pyw215 = callPackage ../development/python-modules/pyw215 { };
|
pyw215 = callPackage ../development/python-modules/pyw215 { };
|
||||||
|
|
||||||
|
pyw800rf32 = callPackage ../development/python-modules/pyw800rf32 { };
|
||||||
|
|
||||||
pywal = callPackage ../development/python-modules/pywal { };
|
pywal = callPackage ../development/python-modules/pywal { };
|
||||||
|
|
||||||
pywatchman = callPackage ../development/python-modules/pywatchman { };
|
pywatchman = callPackage ../development/python-modules/pywatchman { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user