summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-forecastio/default.nix
blob: 7ef2eee4f2e51a27b019dc3dea50876dd59b75a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ buildPythonPackage, stdenv, fetchPypi
, requests
, nose
, responses
}:

buildPythonPackage rec {
  pname = "python-forecastio";
  version = "1.4.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0m6lf4a46pnwm5xg9dnmwslwzrpnj6d9agw570grciivbvb1ji0l";

  };

  checkInputs = [ nose ];

  propagatedBuildInputs = [ requests responses ];

  checkPhase = ''
    nosetests
  '';

  meta = with stdenv.lib; {
    homepage = "https://zeevgilovitz.com/python-forecast.io/";
    description = "A thin Python Wrapper for the Dark Sky (formerly forecast.io) weather API";
    license = licenses.bsd2;
    maintainers = with maintainers; [ makefu ];
  };
}