Merge pull request #271536 from dotlambda/flask-themes2-1.0.1

python311Packages.flask-themes2: 1.0.0 -> 1.0.1
This commit is contained in:
Robert Schütz 2023-12-02 06:40:24 -08:00 committed by GitHub
commit b1d8da6359
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,20 +1,36 @@
{ lib, fetchPypi, buildPythonPackage, flask, pythonOlder, pytestCheckHook }:
{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, setuptools
, flask
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "flask-themes2";
version = "1.0.0";
format = "setuptools";
version = "1.0.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "Flask-Themes2";
inherit version;
hash = "sha256-0U0cSdBddb9+IG3CU6zUPlxaJhQlxOV6OLgxnNDChy8=";
hash = "sha256-gsMgQQXjhDfQRhm7H0kBy8jKxd75WY+PhHR6Rk/PUPs=";
};
nativeCheckInputs = [ pytestCheckHook ];
propagatedBuildInputs = [ flask ];
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
flask
];
nativeCheckInputs = [
pytestCheckHook
];
meta = with lib; {
description = "Easily theme your Flask app";