a0cb138ada
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
55 lines
1 KiB
Nix
55 lines
1 KiB
Nix
{ 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=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# urllib3[secure] is not picked-up
|
|
substituteInPlace setup.py \
|
|
--replace "urllib3[secure]" "urllib3"
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
requests
|
|
urllib3
|
|
setuptools
|
|
] ++ urllib3.optional-dependencies.secure;
|
|
|
|
nativeCheckInputs = [
|
|
mock
|
|
pytestCheckHook
|
|
responses
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|