python.pkgs.werkzeug: 0.11.10 -> 0.12
This commit is contained in:
parent
c9f387a55c
commit
50cc30da73
25
pkgs/development/python-modules/werkzeug/default.nix
Normal file
25
pkgs/development/python-modules/werkzeug/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ stdenv, buildPythonPackage, fetchPypi
|
||||||
|
, itsdangerous
|
||||||
|
, pytest, requests, glibcLocales }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
pname = "Werkzeug";
|
||||||
|
version = "0.12.2";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "09mv4cya3lywkn4mi3qrqmjgwiw99kdk03dk912j8da6ny3pnflh";
|
||||||
|
};
|
||||||
|
|
||||||
|
LC_ALL = "en_US.UTF-8";
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ itsdangerous ];
|
||||||
|
buildInputs = [ pytest requests glibcLocales ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = http://werkzeug.pocoo.org/;
|
||||||
|
description = "A WSGI utility library for Python";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
};
|
||||||
|
}
|
@ -23648,28 +23648,7 @@ EOF
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
werkzeug = callPackage ../development/python-modules/werkzeug { };
|
||||||
werkzeug = buildPythonPackage rec {
|
|
||||||
name = "Werkzeug-0.11.10";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/W/Werkzeug/${name}.tar.gz";
|
|
||||||
sha256 = "1vpf98k4jp4yhbv2jbyq8dj5fdasrd26rkq34pacs5n7mkxxlr6c";
|
|
||||||
};
|
|
||||||
|
|
||||||
LC_ALL = "en_US.UTF-8";
|
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [ itsdangerous ];
|
|
||||||
buildInputs = with self; [ pytest requests pkgs.glibcLocales ];
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
homepage = http://werkzeug.pocoo.org/;
|
|
||||||
description = "A WSGI utility library for Python";
|
|
||||||
license = licenses.bsd3;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
wheel = callPackage ../development/python-modules/wheel { };
|
wheel = callPackage ../development/python-modules/wheel { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user