Merge pull request #146870 from fabaff/bump-ephember

python3Packages.pyephember: init at 0.3.1
This commit is contained in:
Fabian Affolter 2021-11-22 09:44:17 +01:00 committed by GitHub
commit 9f86e2d3e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 40 additions and 1 deletions

View 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 ];
};
}

View file

@ -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

View file

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