Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / yahooweather / default.nix
blob6f61645b9b22afbe1818e2c0692fb1f8ee455972
1 { lib, buildPythonPackage, fetchPypi, isPy3k }:
3 buildPythonPackage rec {
4   pname = "yahooweather";
5   version = "0.10";
6   format = "setuptools";
8   disabled = !isPy3k;
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "0bsxmngkpzvqm50i2cnxjzhpbdhb8s10ly8h5q08696cjihqdkpa";
13   };
15   # Tests require network access
16   doCheck = false;
18   meta = with lib; {
19     description = "Provide an interface to the Yahoo! Weather RSS feed";
20     homepage = "https://github.com/pvizeli/yahooweather";
21     license = licenses.bsd2;
22     maintainers = with maintainers; [ peterhoeg ];
23   };