summary refs log tree commit diff
path: root/pkgs/development/python-modules/flask-script/default.nix
blob: ace3cee2d22e8c170a86f488b21942f142957bf9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, buildPythonPackage, fetchurl, flask, pytest }:

buildPythonPackage rec {
  name = "Flask-Script-${version}";
  version = "2.0.6";

  src = fetchurl {
    url = "mirror://pypi/F/Flask-Script/${name}.tar.gz";
    sha256 = "0zqh2yq8zk7m9b4xw1ryqmrljkdigfb3hk5155a3b5hkfnn6xxyf";
  };

  propagatedBuildInputs = [ flask ];
  checkInputs = [ pytest ];

  meta = with lib; {
    homepage = http://github.com/smurfix/flask-script;
    description = "Scripting support for Flask";
    license = licenses.bsd3;
    maintainers = with maintainers; [ abbradar ];
  };
}