python: Werkzeug: 0.12.2 -> 0.13

This commit is contained in:
Frederik Rietdijk 2017-12-30 12:28:33 +01:00
parent b368eb2666
commit b0146980e5

View File

@ -1,21 +1,23 @@
{ stdenv, buildPythonPackage, fetchPypi { stdenv, buildPythonPackage, fetchPypi
, itsdangerous , itsdangerous, hypothesis
, pytest, requests, glibcLocales }: , pytest, requests, glibcLocales }:
buildPythonPackage rec { buildPythonPackage rec {
name = "${pname}-${version}"; name = "${pname}-${version}";
pname = "Werkzeug"; pname = "Werkzeug";
version = "0.12.2"; version = "0.13";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "09mv4cya3lywkn4mi3qrqmjgwiw99kdk03dk912j8da6ny3pnflh"; sha256 = "6246e5fc98a505824113fb6aca993d45ea284a2bcffdc2c65d0c538e53e4abd3";
}; };
LC_ALL = "en_US.UTF-8";
propagatedBuildInputs = [ itsdangerous ]; propagatedBuildInputs = [ itsdangerous ];
buildInputs = [ pytest requests glibcLocales ]; checkInputs = [ pytest requests glibcLocales hypothesis ];
checkPhase = ''
LC_ALL="en_US.UTF-8" py.test
'';
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = http://werkzeug.pocoo.org/; homepage = http://werkzeug.pocoo.org/;