mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
pythonPackages.yahooweather: init at 0.10
This commit is contained in:
parent
0bb55edb3a
commit
4af9a88107
23
pkgs/development/python-modules/yahooweather/default.nix
Normal file
23
pkgs/development/python-modules/yahooweather/default.nix
Normal file
@ -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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user