summary refs log tree commit diff
path: root/pkgs/development/python-modules/tank-utility/default.nix
blob: ab4573594d95c1af57dcc8f748be3b2a5c339323 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{ 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 ];
  };
}