5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
25 lines
600 B
Nix
25 lines
600 B
Nix
{ lib, buildPythonPackage, fetchPypi, flask, pytest }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "flask-script";
|
|
version = "2.0.6";
|
|
|
|
src = fetchPypi {
|
|
pname = "Flask-Script";
|
|
inherit version;
|
|
hash = "sha256-ZCWWPZEFTPzBhYBxQccxSpxa1GMlkRvSTctIm9AWHGU=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ flask ];
|
|
nativeCheckInputs = [ 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 ];
|
|
};
|
|
}
|