3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/pyatmo/default.nix

42 lines
870 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";
version = "4.1.0";
disabled = pythonOlder "3.5"; # uses type hints
2019-05-04 22:43:49 +01:00
src = fetchFromGitHub {
owner = "jabesq";
repo = "netatmo-api-python";
rev = "v${version}";
sha256 = "0x3xq6ni9rl5k3vi0ydqafdzvza785ycnlgyikgqbkppbh3j33ig";
2019-05-04 22:43:49 +01:00
};
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 ];
};
}