3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #67925 from arcnmx/flask-1.0.4

pythonPackages.flask: 1.0.3 -> 1.0.4
This commit is contained in:
Matthieu Coudron 2019-09-02 18:52:00 +09:00 committed by GitHub
commit becf5adaeb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,12 +2,12 @@
, itsdangerous, click, werkzeug, jinja2, pytest }:
buildPythonPackage rec {
version = "1.0.3";
version = "1.0.4";
pname = "Flask";
src = fetchPypi {
inherit pname version;
sha256 = "ad7c6d841e64296b962296c2c2dabc6543752985727af86a975072dea984b6f3";
sha256 = "ed1330220a321138de53ec7c534c3d90cf2f7af938c7880fc3da13aa46bf870f";
};
checkInputs = [ pytest ];