depot/third_party/nixpkgs/pkgs/development/python-modules/flask-themes2/default.nix
Default email 5e9e1146e1 Project import generated by Copybara.
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
2023-08-05 00:07:22 +02:00

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 ];
};
}