about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/yahooweather/default.nix
blob: 6f61645b9b22afbe1818e2c0692fb1f8ee455972 (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
{ lib, buildPythonPackage, fetchPypi, isPy3k }:

buildPythonPackage rec {
  pname = "yahooweather";
  version = "0.10";
  format = "setuptools";

  disabled = !isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "0bsxmngkpzvqm50i2cnxjzhpbdhb8s10ly8h5q08696cjihqdkpa";
  };

  # Tests require network access
  doCheck = false;

  meta = with lib; {
    description = "Provide an interface to the Yahoo! Weather RSS feed";
    homepage = "https://github.com/pvizeli/yahooweather";
    license = licenses.bsd2;
    maintainers = with maintainers; [ peterhoeg ];
  };
}