pythonPackages.Werkzeug: 0.10.4 -> 0.11.10

+4 -5
+4 -5
pkgs/top-level/python-packages.nix
··· 24663 24664 24665 werkzeug = buildPythonPackage rec { 24666 - name = "Werkzeug-0.10.4"; 24667 24668 src = pkgs.fetchurl { 24669 url = "mirror://pypi/W/Werkzeug/${name}.tar.gz"; 24670 - sha256 = "9d2771e4c89be127bc4bac056ab7ceaf0e0064c723d6b6e195739c3af4fd5c1d"; 24671 }; 24672 24673 propagatedBuildInputs = with self; [ itsdangerous ]; 24674 - 24675 - doCheck = false; # tests fail, not sure why 24676 24677 meta = { 24678 homepage = http://werkzeug.pocoo.org/; 24679 description = "A WSGI utility library for Python"; 24680 - license = "BSD"; 24681 }; 24682 }; 24683
··· 24663 24664 24665 werkzeug = buildPythonPackage rec { 24666 + name = "Werkzeug-0.11.10"; 24667 24668 src = pkgs.fetchurl { 24669 url = "mirror://pypi/W/Werkzeug/${name}.tar.gz"; 24670 + sha256 = "1vpf98k4jp4yhbv2jbyq8dj5fdasrd26rkq34pacs5n7mkxxlr6c"; 24671 }; 24672 24673 propagatedBuildInputs = with self; [ itsdangerous ]; 24674 + nativeBuildInputs = with self; [ pytest requests ]; 24675 24676 meta = { 24677 homepage = http://werkzeug.pocoo.org/; 24678 description = "A WSGI utility library for Python"; 24679 + license = licenses.bsd3; 24680 }; 24681 }; 24682