Skip to content

Commit

Permalink
pythonPackages.yahooweather: init at 0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
peterhoeg authored and Robert Schütz committed Mar 4, 2018
1 parent 0bb55ed commit 4af9a88
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
23 changes: 23 additions & 0 deletions pkgs/development/python-modules/yahooweather/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{ lib, buildPythonPackage, fetchPypi, isPy3k }:

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

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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21170,6 +21170,8 @@ EOF

thinc = callPackage ../development/python-modules/thinc { };

yahooweather = callPackage ../development/python-modules/yahooweather { };

spacy = callPackage ../development/python-modules/spacy { };

spacy_models = callPackage ../development/python-modules/spacy/models.nix { };
Expand Down

0 comments on commit 4af9a88

Please sign in to comment.