Merge pull request #170313 from fabaff/pencompy

python3Packages.pencompy: init at 0.0.4
This commit is contained in:
Martin Weinelt 2022-04-25 22:45:53 +02:00 committed by GitHub
commit 18e6933358
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 36 additions and 1 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

@ -1962,7 +1962,8 @@
peco
];
"pencom" = ps: with ps; [
]; # missing inputs: pencompy
pencompy
];
"persistent_notification" = ps: with ps; [
];
"person" = ps: with ps; [

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 { };