summary refs log tree commit diff
path: root/pkgs/development/python-modules/fitbit/default.nix
blob: b41ac0a4983a141f520a3b056916a12cd88f21a8 (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
{ lib
, buildPythonPackage
, fetchFromGitHub
, coverage
, python-dateutil
, freezegun
, mock
, requests-mock
, requests_oauthlib
, sphinx
}:

buildPythonPackage rec {
  pname = "fitbit";
  version = "0.3.1";

  checkInputs = [ coverage freezegun mock requests-mock sphinx ];
  propagatedBuildInputs = [ python-dateutil requests_oauthlib ];

  # The source package on PyPi is missing files required for unit testing.
  # https://github.com/orcasgit/python-fitbit/issues/148
  src = fetchFromGitHub {
    rev = version;
    owner = "orcasgit";
    repo = "python-fitbit";
    sha256 = "1w2lpgf6bs5nbnmslppaf4lbhr9cj6grg0a525xv41jip7iy3vfn";
  };

  postPatch = ''
    substituteInPlace requirements/test.txt \
      --replace 'Sphinx>=1.2,<1.4' 'Sphinx' \
      --replace 'coverage>=3.7,<4.0' 'coverage'
  '';

  meta = with lib; {
    description = "Fitbit API Python Client Implementation";
    license = licenses.asl20;
    homepage = "https://github.com/orcasgit/python-fitbit";
    maintainers = with maintainers; [ delroth ];
  };
}