about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/toggl-cli/default.nix
blob: 62d3f2dde24deee9756e88752b28a838081943b7 (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
56
57
58
59
60
61
{ stdenv, buildPythonPackage, fetchPypi, twine, pbr, click, click-completion, validate-email,
pendulum, ptable, requests, inquirer, pythonOlder, pytest, pytestcov, pytest-mock, faker, factory_boy,
setuptools }:


buildPythonPackage rec {
  pname = "toggl-cli";
  version = "2.1.0";

  disabled = pythonOlder "3.5";

  src = fetchPypi {
    pname = "togglCli";
    inherit version;
    sha256 = "0iirvvb8772569v28d36bnryksm1qkkw48d48fw26j7ka01qq6mm";
  };

  postPatch = ''
   substituteInPlace requirements.txt \
     --replace "pendulum==2.0.4" "pendulum>=2.0.4" \
     --replace "click-completion==0.5.0" "click-completion>=0.5.0" \
     --replace "click==7.0" "click>=7.0" \
     --replace "pbr==5.1.2" "pbr>=5.1.2" \
     --replace "inquirer==2.5.1" "inquirer>=2.5.1"
  '';

  nativeBuildInputs = [ pbr twine ];
  checkInputs = [ pbr pytest pytestcov pytest-mock faker factory_boy ];

  preCheck = ''
    export TOGGL_API_TOKEN=your_api_token
    export TOGGL_PASSWORD=toggl_password
    export TOGGL_USERNAME=user@example.com
    '';

  checkPhase = ''
   runHook preCheck
   pytest -k "not premium and not TestDateTimeType and not TestDateTimeField" tests/unit --maxfail=20
   runHook postCheck
  '';

  propagatedBuildInputs = [
    setuptools
    click
    click-completion
    validate-email
    pendulum
    ptable
    requests
    inquirer
    pbr
  ];

  meta = with stdenv.lib; {
    homepage = "https://toggl.uhlir.dev/";
    description = "Command line tool and set of Python wrapper classes for interacting with toggl's API";
    license = licenses.mit;
    maintainers = [ maintainers.mmahut ];
  };
}