python3Packages.pyephember: init at 0.3.1

This commit is contained in:
Fabian Affolter 2021-11-21 15:19:17 +01:00
parent 293e6f0ce5
commit 6c7751121c
2 changed files with 39 additions and 0 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

@ -6396,6 +6396,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 { };