mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Merge pull request #60953 from delroth/fitbit-hass
Fix home-assistant fitbit support
This commit is contained in:
commit
b029d12b54
2 changed files with 43 additions and 0 deletions
41
pkgs/development/python-modules/fitbit/default.nix
Normal file
41
pkgs/development/python-modules/fitbit/default.nix
Normal file
|
@ -0,0 +1,41 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, coverage
|
||||
, dateutil
|
||||
, freezegun
|
||||
, mock
|
||||
, requests-mock
|
||||
, requests_oauthlib
|
||||
, sphinx
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "fitbit";
|
||||
version = "0.3.0";
|
||||
|
||||
checkInputs = [ coverage freezegun mock requests-mock sphinx ];
|
||||
propagatedBuildInputs = [ 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 = "0s1kp4qcxvxghqf9nb71843slm4r5lhl2rlvj3yvhbby3cqs4g84";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -2608,6 +2608,8 @@ in {
|
|||
|
||||
fiona = callPackage ../development/python-modules/fiona { gdal = pkgs.gdal; };
|
||||
|
||||
fitbit = callPackage ../development/python-modules/fitbit { };
|
||||
|
||||
flake8 = callPackage ../development/python-modules/flake8 { };
|
||||
|
||||
flake8-blind-except = callPackage ../development/python-modules/flake8-blind-except { };
|
||||
|
|
Loading…
Reference in a new issue