mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-10 09:43:30 +01:00
Listed as maintainer for ~170 packages but last commit that made it to
master was 6786ceb in February 2022.
Unresponsive on PRs, such as i.e. #411522
33 lines
609 B
Nix
33 lines
609 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
flask,
|
|
pytest,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "flask-script";
|
|
version = "2.0.6";
|
|
format = "setuptools";
|
|
|
|
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 = [ ];
|
|
};
|
|
}
|