nixpkgs/pkgs/development/python-modules/flask-script/default.nix
ajs124 760e394777 pythonPackages.flask_script: fix hash
the old hash was for 2.0.5, so the store path for the dist-info was:
/nix/store/v5sgpkxpp950chzdzzj4b5yl9r0w0by7-python3.7-Flask-Script-2.0.6/lib/python3.7/site-packages/Flask_Script-2.0.5.dist-info
2019-06-12 21:40:09 -04:00

25 lines
573 B
Nix

{ lib, buildPythonPackage, fetchPypi, flask, pytest }:
buildPythonPackage rec {
pname = "Flask-Script";
version = "2.0.6";
src = fetchPypi {
inherit pname version;
sha256 = "0r8w2v89nj6b9p91p495cga5m72a673l2wc0hp0zqk05j4yrc9b4";
};
propagatedBuildInputs = [ flask ];
checkInputs = [ pytest ];
# No tests in archive
doCheck = false;
meta = with lib; {
homepage = https://github.com/smurfix/flask-script;
description = "Scripting support for Flask";
license = licenses.bsd3;
maintainers = with maintainers; [ abbradar ];
};
}