From e7ceccbb87d31bf6fe4216fdcd9f05fe8533153b Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 20 Aug 2023 10:34:15 +0200 Subject: [PATCH] python310Packages.sphinx-material: add format - disable on unsupported Python releases --- .../sphinx-material/default.nix | 20 ++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/sphinx-material/default.nix b/pkgs/development/python-modules/sphinx-material/default.nix index b735b746a33d..9cbcb31d3347 100644 --- a/pkgs/development/python-modules/sphinx-material/default.nix +++ b/pkgs/development/python-modules/sphinx-material/default.nix @@ -1,22 +1,26 @@ { lib -, buildPythonPackage -, fetchPypi -, sphinx , beautifulsoup4 -, python-slugify -, unidecode +, buildPythonPackage , css-html-js-minify +, fetchPypi , lxml +, python-slugify +, pythonOlder +, sphinx +, unidecode }: buildPythonPackage rec { pname = "sphinx-material"; version = "0.0.36"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; src = fetchPypi { pname = "sphinx_material"; inherit version; - sha256 = "sha256-7v9ffT3AFq8yuv33DGbmcdFch1Tb4GE9+9Yp++2RKGk="; + hash = "sha256-7v9ffT3AFq8yuv33DGbmcdFch1Tb4GE9+9Yp++2RKGk="; }; propagatedBuildInputs = [ @@ -30,7 +34,9 @@ buildPythonPackage rec { doCheck = false; # no tests - pythonImportsCheck = [ "sphinx_material" ]; + pythonImportsCheck = [ + "sphinx_material" + ]; meta = with lib; { description = "A material-based, responsive theme inspired by mkdocs-material";