Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / flask-themes2 / default.nix
blob56c03ca39e0cbdc37708d8f757324ecb437d13b1
1 { lib, fetchPypi, buildPythonPackage, flask, pythonOlder, pytestCheckHook }:
3 buildPythonPackage rec {
4   pname = "flask-themes2";
5   version = "1.0.0";
6   format = "setuptools";
8   disabled = pythonOlder "3.8";
10   src = fetchPypi {
11     pname = "Flask-Themes2";
12     inherit version;
13     hash = "sha256-0U0cSdBddb9+IG3CU6zUPlxaJhQlxOV6OLgxnNDChy8=";
14   };
16   nativeCheckInputs = [ pytestCheckHook ];
17   propagatedBuildInputs = [ flask ];
19   meta = with lib; {
20     description = "Easily theme your Flask app";
21     homepage = "https://github.com/sysr-q/flask-themes2";
22     license = licenses.mit;
23     maintainers = with maintainers; [ ruby0b ];
24   };