nixpkgs/pkgs/development/python-modules/pyatmo/default.nix

52 lines
1000 B
Nix
Raw Normal View History

2019-05-04 22:43:49 +01:00
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, oauthlib
, requests
, requests_oauthlib
, freezegun
, pytestCheckHook
, requests-mock
2019-05-04 22:43:49 +01:00
}:
buildPythonPackage rec {
pname = "pyatmo";
2021-01-24 01:50:04 +00:00
version = "4.2.2";
disabled = pythonOlder "3.7";
2019-05-04 22:43:49 +01:00
src = fetchFromGitHub {
owner = "jabesq";
2021-01-24 01:50:04 +00:00
repo = "pyatmo";
rev = "v${version}";
2021-01-24 01:50:04 +00:00
sha256 = "sha256-3IxDDLa8KMHVkHAeTmdNVRPc5aKzF3VwL2kKnG8Fp7I=";
2019-05-04 22:43:49 +01:00
};
postPatch = ''
substituteInPlace setup.cfg \
2021-01-24 01:50:04 +00:00
--replace "oauthlib~=3.1" "oauthlib" \
--replace "requests~=2.24" "requests"
'';
propagatedBuildInputs = [
oauthlib
requests
requests_oauthlib
];
checkInputs = [
freezegun
pytestCheckHook
requests-mock
];
pythonImportsCheck = [ "pyatmo" ];
2019-05-04 22:43:49 +01:00
meta = with lib; {
description = "Simple API to access Netatmo weather station data";
license = licenses.mit;
homepage = "https://github.com/jabesq/netatmo-api-python";
2019-05-04 22:43:49 +01:00
maintainers = with maintainers; [ delroth ];
};
}