Merge pull request #170313 from fabaff/pencompy
python3Packages.pencompy: init at 0.0.4
This commit is contained in:
commit
18e6933358
32
pkgs/development/python-modules/pencompy/default.nix
Normal file
32
pkgs/development/python-modules/pencompy/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -1962,7 +1962,8 @@
|
||||
peco
|
||||
];
|
||||
"pencom" = ps: with ps; [
|
||||
]; # missing inputs: pencompy
|
||||
pencompy
|
||||
];
|
||||
"persistent_notification" = ps: with ps; [
|
||||
];
|
||||
"person" = ps: with ps; [
|
||||
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user