5e9e1146e1
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
25 lines
644 B
Nix
25 lines
644 B
Nix
{ lib, fetchPypi, buildPythonPackage, flask, pythonOlder, pytestCheckHook }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "flask-themes2";
|
|
version = "1.0.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchPypi {
|
|
pname = "Flask-Themes2";
|
|
inherit version;
|
|
hash = "sha256-0U0cSdBddb9+IG3CU6zUPlxaJhQlxOV6OLgxnNDChy8=";
|
|
};
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
propagatedBuildInputs = [ flask ];
|
|
|
|
meta = with lib; {
|
|
description = "Easily theme your Flask app";
|
|
homepage = "https://github.com/sysr-q/flask-themes2";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ruby0b ];
|
|
};
|
|
}
|