python310Packages.tank-utility: init at 1.4.1

This commit is contained in:
Fabian Affolter
2022-08-23 20:17:09 +02:00
parent 796a267784
commit cf1f301a1e
2 changed files with 52 additions and 0 deletions
@@ -0,0 +1,50 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, mock
, pytestCheckHook
, pythonOlder
, requests
, responses
, setuptools
, urllib3
}:
buildPythonPackage rec {
pname = "tank-utility";
version = "1.4.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "krismolendyke";
repo = pname;
rev = version;
hash = "sha256-2cxAaSyreIzQzCUtiolEV7JbGFKL8Mob3337J0jlMsU=";
};
propagatedBuildInputs = [
requests
urllib3
setuptools
] ++ urllib3.optional-dependencies.secure;
checkInputs = [
responses
mock
pytestCheckHook
];
pythonImportsCheck = [
"tank_utility"
];
meta = with lib; {
description = "Library for the Tank Utility API";
homepage = "https://github.com/krismolendyke/tank-utility";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}
+2
View File
@@ -10610,6 +10610,8 @@ in {
tailscale = callPackage ../development/python-modules/tailscale { };
tank-utility = callPackage ../development/python-modules/tank-utility { };
tappy = callPackage ../development/python-modules/tappy { };
tasklib = callPackage ../development/python-modules/tasklib { };