python3Packages.py-tes: init at 0.4.2

This commit is contained in:
Fabian Affolter 2022-01-13 21:35:50 +01:00
parent 36797a3c65
commit 694e98f8a6
2 changed files with 51 additions and 0 deletions

View File

@ -0,0 +1,49 @@
{ lib
, attrs
, buildPythonPackage
, fetchFromGitHub
, future
, python-dateutil
, pytestCheckHook
, pythonOlder
, requests
, requests-mock
}:
buildPythonPackage rec {
pname = "py-tes";
version = "0.4.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "ohsu-comp-bio";
repo = pname;
rev = version;
hash = "sha256-HZeyCQHiqfdquWQD5axS73JDjDMUieONwm5VyA+vTFk=";
};
propagatedBuildInputs = [
attrs
future
python-dateutil
requests
];
checkInputs = [
pytestCheckHook
requests-mock
];
pythonImportsCheck = [
"tes"
];
meta = with lib; {
description = "Python SDK for the GA4GH Task Execution API";
homepage = "https://github.com/ohsu-comp-bio/py-tes";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View File

@ -6398,6 +6398,8 @@ in {
py-synologydsm-api = callPackage ../development/python-modules/py-synologydsm-api { };
py-tes = callPackage ../development/python-modules/py-tes { };
py-ubjson = callPackage ../development/python-modules/py-ubjson { };
py-zabbix = callPackage ../development/python-modules/py-zabbix { };