26 lines
644 B
Nix
26 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 ];
|
||
|
};
|
||
|
}
|