mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
pythonPackages.flask_script: init at 2.0.5
This commit is contained in:
parent
95ffcafff3
commit
d7b1ffe9c7
1 changed files with 21 additions and 0 deletions
|
@ -8770,6 +8770,27 @@ in modules // {
|
|||
};
|
||||
};
|
||||
|
||||
flask_script = buildPythonPackage rec {
|
||||
name = "Flask-Script-${version}";
|
||||
version = "2.0.5";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/F/Flask-Script/${name}.tar.gz";
|
||||
sha256 = "0zqh2yq8zk7m9b4xw1ryqmrljkdigfb3hk5155a3b5hkfnn6xxyf";
|
||||
};
|
||||
|
||||
nativeBuildInputs = with self; [ pytest ];
|
||||
propagatedBuildInputs = with self; [ flask ];
|
||||
|
||||
meta = {
|
||||
homepage = http://github.com/smurfix/flask-script;
|
||||
description = "Scripting support for Flask";
|
||||
license = licenses.bsd3;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
};
|
||||
};
|
||||
|
||||
wtforms = buildPythonPackage rec {
|
||||
version = "2.0.2";
|
||||
name = "wtforms-${version}";
|
||||
|
|
Loading…
Reference in a new issue