lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.pyW800rf32: init at 0.4

+36
+34
pkgs/development/python-modules/pyw800rf32/default.nix
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchPypi, 5 + setuptools, 6 + pyserial, 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "pyW800rf32"; 11 + version = "0.4"; 12 + pyproject = true; 13 + 14 + src = fetchPypi { 15 + inherit pname version; 16 + hash = "sha256-i0XXqohKY5pWIjcOCUxUQdx/FSSqgTnTaWcDxnIYjMk="; 17 + }; 18 + 19 + build-system = [ setuptools ]; 20 + 21 + dependencies = [ pyserial ]; 22 + 23 + pythonImportsCheck = [ "W800rf32" ]; 24 + 25 + # upstream has no tests 26 + doCheck = false; 27 + 28 + meta = { 29 + description = "Python library to communicate with the W800rf32 family of devices"; 30 + homepage = "https://github.com/horga83/pyW800rf32"; 31 + license = lib.licenses.lgpl3Plus; 32 + maintainers = [ lib.maintainers.jamiemagee ]; 33 + }; 34 + }
+2
pkgs/top-level/python-packages.nix
··· 15183 15183 15184 15184 pyw215 = callPackage ../development/python-modules/pyw215 { }; 15185 15185 15186 + pyw800rf32 = callPackage ../development/python-modules/pyw800rf32 { }; 15187 + 15186 15188 pywal = callPackage ../development/python-modules/pywal { }; 15187 15189 15188 15190 pywatchman = callPackage ../development/python-modules/pywatchman { };