Merge pull request #146870 from fabaff/bump-ephember
python3Packages.pyephember: init at 0.3.1
This commit is contained in:
commit
9f86e2d3e8
3 changed files with 40 additions and 1 deletions
37
pkgs/development/python-modules/pyephember/default.nix
Normal file
37
pkgs/development/python-modules/pyephember/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
, requests
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyephember";
|
||||
version = "0.3.1";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "3eMdkP7u3TTg1AUK4OR7AGZkD0FxUUPp/etvZ2Rw74E=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
requests
|
||||
];
|
||||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pyephember"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python client to the EPH Control Systems Ember API";
|
||||
homepage = "https://github.com/ttroy50/pyephember";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -238,7 +238,7 @@
|
|||
"environment_canada" = ps: with ps; [ env-canada ];
|
||||
"envirophat" = ps: with ps; [ smbus-cffi ]; # missing inputs: envirophat
|
||||
"envisalink" = ps: with ps; [ pyenvisalink ];
|
||||
"ephember" = ps: with ps; [ ]; # missing inputs: pyephember
|
||||
"ephember" = ps: with ps; [ pyephember ];
|
||||
"epson" = ps: with ps; [ epson-projector ];
|
||||
"epsonworkforce" = ps: with ps; [ ]; # missing inputs: epsonprinter
|
||||
"eq3btsmart" = ps: with ps; [ construct ]; # missing inputs: python-eq3bt
|
||||
|
|
|
@ -6424,6 +6424,8 @@ in {
|
|||
|
||||
pyenvisalink = callPackage ../development/python-modules/pyenvisalink { };
|
||||
|
||||
pyephember = callPackage ../development/python-modules/pyephember { };
|
||||
|
||||
pyepsg = callPackage ../development/python-modules/pyepsg { };
|
||||
|
||||
pyerfa = callPackage ../development/python-modules/pyerfa { };
|
||||
|
|
Loading…
Reference in a new issue