depot/third_party/nixpkgs/pkgs/development/python-modules/fitbit/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

53 lines
1,016 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
freezegun,
mock,
pytestCheckHook,
python-dateutil,
pythonOlder,
requests-mock,
requests-oauthlib,
}:
buildPythonPackage rec {
pname = "fitbit";
version = "0.3.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "orcasgit";
repo = "python-fitbit";
rev = version;
hash = "sha256-1u3h47lRBrJ7EUWBl5+RLGW4KHHqXqqrXbboZdy7VPA=";
};
postPatch = ''
substituteInPlace fitbit_tests/test_api.py \
--replace-fail assertRaisesRegexp assertRaisesRegex
'';
propagatedBuildInputs = [
python-dateutil
requests-oauthlib
];
nativeCheckInputs = [
freezegun
mock
pytestCheckHook
requests-mock
];
pythonImportsCheck = [ "fitbit" ];
meta = with lib; {
description = "Fitbit API Python Client Implementation";
homepage = "https://github.com/orcasgit/python-fitbit";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}