biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / pallets-sphinx-themes / default.nix
blobbba0de1f208f29174e6601fc6eb41f54868dbd84
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   sphinx,
6   packaging,
7 }:
9 buildPythonPackage rec {
10   pname = "pallets-sphinx-themes";
11   version = "2.1.3";
12   format = "setuptools";
14   src = fetchFromGitHub {
15     owner = "pallets";
16     repo = "pallets-sphinx-themes";
17     rev = "refs/tags/${version}";
18     sha256 = "sha256-uXSejJLVmYpzRCP92JQKHosnlx7dgZlFf5XzbxOfvII=";
19   };
21   propagatedBuildInputs = [
22     packaging
23     sphinx
24   ];
26   pythonImportsCheck = [ "pallets_sphinx_themes" ];
28   doCheck = false;
30   meta = with lib; {
31     homepage = "https://github.com/pallets/pallets-sphinx-themes";
32     description = "Sphinx theme for Pallets projects";
33     license = licenses.bsd3;
34     maintainers = with maintainers; [ kaction ];
35   };