python3Packages.pencompy: init at 0.0.4

This commit is contained in:
Fabian Affolter 2022-04-25 21:55:58 +02:00
parent d123039b2e
commit cb610be2a0
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "pencompy";
version = "0.0.4";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-PjALTsk0Msv3g8M6k0v6ftzDAuFKyIPSpfvT8S3YL48=";
};
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"pencompy"
];
meta = with lib; {
description = "Library for interacting with Pencom relay boards";
homepage = "https://github.com/dubnom/pencompy";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -6210,6 +6210,8 @@ in {
pdunehd = callPackage ../development/python-modules/pdunehd { };
pencompy = callPackage ../development/python-modules/pencompy { };
pixcat = callPackage ../development/python-modules/pixcat { };
pyprecice = callPackage ../development/python-modules/pyprecice { };