lol

Merge pull request #261330 from natsukium/guzzle-sphinx-theme

python311Packages.guzzle-sphinx-theme: rename from guzzle_sphinx_theme

authored by

Fabian Affolter and committed by
GitHub
0f6819c3 905705a2

+40 -24
+37
pkgs/development/python-modules/guzzle-sphinx-theme/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , setuptools 5 + , sphinx 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "guzzle-sphinx-theme"; 10 + version = "0.7.11"; 11 + pyproject = true; 12 + 13 + src = fetchPypi { 14 + pname = "guzzle_sphinx_theme"; 15 + inherit version; 16 + hash = "sha256-m4wWOcNDwCw/PbffZg3fb1M7VFTukqX3sC7apXP+0+Y="; 17 + }; 18 + 19 + nativeBuildInputs = [ 20 + setuptools 21 + ]; 22 + 23 + doCheck = false; # no tests 24 + 25 + propagatedBuildInputs = [ sphinx ]; 26 + 27 + pythonImportsCheck = [ 28 + "guzzle_sphinx_theme" 29 + ]; 30 + 31 + meta = with lib; { 32 + description = "Sphinx theme used by Guzzle: http://guzzlephp.org"; 33 + homepage = "https://github.com/guzzle/guzzle_sphinx_theme/"; 34 + license = licenses.mit; 35 + maintainers = with maintainers; [ flokli ]; 36 + }; 37 + }
-22
pkgs/development/python-modules/guzzle_sphinx_theme/default.nix
··· 1 - { lib, buildPythonPackage, sphinx, fetchPypi }: 2 - 3 - buildPythonPackage rec { 4 - pname = "guzzle_sphinx_theme"; 5 - version = "0.7.11"; 6 - src = fetchPypi { 7 - inherit pname version; 8 - sha256 = "1rnkzrrsbnifn3vsb4pfaia3nlvgvw6ndpxp7lzjrh23qcwid34v"; 9 - }; 10 - 11 - doCheck = false; # no tests 12 - 13 - propagatedBuildInputs = [ sphinx ]; 14 - 15 - meta = with lib; { 16 - description = "Sphinx theme used by Guzzle: http://guzzlephp.org"; 17 - homepage = "https://github.com/guzzle/guzzle_sphinx_theme/"; 18 - license = licenses.mit; 19 - maintainers = with maintainers; [ flokli ]; 20 - platforms = platforms.unix; 21 - }; 22 - }
+1 -1
pkgs/tools/backup/borgbackup/default.nix
··· 37 37 38 38 # docs 39 39 sphinxHook 40 - guzzle_sphinx_theme 40 + guzzle-sphinx-theme 41 41 42 42 # shell completions 43 43 installShellFiles
+1
pkgs/top-level/python-aliases.nix
··· 174 174 graphite_beacon = throw "graphite_beacon was removed, because it is no longer maintained"; # added 2022-07-09 175 175 grappelli_safe = grappelli-safe; # added 2023-10-08 176 176 grpc_google_iam_v1 = grpc-google-iam-v1; # added 2021-08-21 177 + guzzle_sphinx_theme = guzzle-sphinx-theme; # added 2023-10-16 177 178 ha-av = throw "ha-av was removed, because it is no longer maintained"; # added 2022-04-06 178 179 HAP-python = hap-python; # added 2021-06-01 179 180 hangups = throw "hangups was removed because Google Hangouts has been shut down"; # added 2023-02-13
+1 -1
pkgs/top-level/python-packages.nix
··· 4810 4810 else 4811 4811 throw "gurobipy not yet supported on ${stdenv.hostPlatform.system}"; 4812 4812 4813 - guzzle_sphinx_theme = callPackage ../development/python-modules/guzzle_sphinx_theme { }; 4813 + guzzle-sphinx-theme = callPackage ../development/python-modules/guzzle-sphinx-theme { }; 4814 4814 4815 4815 gvm-tools = callPackage ../development/python-modules/gvm-tools { }; 4816 4816