pythonPackages.pyowm: init at 2.8.0

This commit is contained in:
Franz Pletz 2018-05-07 12:35:40 +02:00
parent 509a340d90
commit 11ad518935
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,19 @@
{ lib, stdenv, buildPythonPackage, fetchPypi, requests }:
buildPythonPackage rec {
pname = "pyowm";
version = "2.8.0";
src = fetchPypi {
inherit pname version;
sha256 = "0y2r322pcamabar70513pbyiq26x33l1aq9cim6k30lk9p4aq310";
};
propagatedBuildInputs = [ requests ];
meta = with lib; {
description = "A Python wrapper around the OpenWeatherMap web API";
homepage = https://pyowm.readthedocs.io/;
license = licenses.mit;
};
}

View File

@ -18259,6 +18259,8 @@ EOF
PyMVGLive = callPackage ../development/python-modules/pymvglive { };
coinmarketcap = callPackage ../development/python-modules/coinmarketcap { };
pyowm = callPackage ../development/python-modules/pyowm { };
});
in fix' (extends overrides packages)