linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / python-forecastio / default.nix
blob991ec3279decc0433769f200101dacd2b8d36c4e
1 { buildPythonPackage, lib, fetchPypi
2 , requests
3 , nose
4 , responses
5 }:
7 buildPythonPackage rec {
8   pname = "python-forecastio";
9   version = "1.4.0";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "0m6lf4a46pnwm5xg9dnmwslwzrpnj6d9agw570grciivbvb1ji0l";
15   };
17   checkInputs = [ nose ];
19   propagatedBuildInputs = [ requests responses ];
21   checkPhase = ''
22     nosetests
23   '';
25   meta = with lib; {
26     homepage = "https://zeevgilovitz.com/python-forecast.io/";
27     description = "A thin Python Wrapper for the Dark Sky (formerly forecast.io) weather API";
28     license = licenses.bsd2;
29     maintainers = with maintainers; [ makefu ];
30   };