Merge pull request #172731 from KAction/master

This commit is contained in:
Martin Weinelt 2022-08-30 01:31:39 +02:00 committed by GitHub
commit 24b83252c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ lib, buildPythonPackage, fetchFromGitHub, sphinx, packaging }:
buildPythonPackage rec {
pname = "pallets-sphinx-themes";
version = "2.0.2";
src = fetchFromGitHub {
owner = "pallets";
repo = "pallets-sphinx-themes";
rev = version;
sha256 = "0nvznv6abmkkda2fahydd4rykd94rmz74hx5aypv6j22zvf5pj8b";
};
propagatedBuildInputs = [ packaging sphinx ];
pythonImportsCheck = [ "pallets_sphinx_themes" ];
doCheck = false;
meta = with lib; {
homepage = "https://github.com/pallets/pallets-sphinx-themes";
description = "Sphinx theme for Pallets projects";
license = licenses.bsd3;
maintainers = with maintainers; [ kaction ];
};
}

View File

@ -6470,6 +6470,8 @@ in {
palettable = callPackage ../development/python-modules/palettable { };
pallets-sphinx-themes = callPackage ../development/python-modules/pallets-sphinx-themes { };
pamela = callPackage ../development/python-modules/pamela { };
pamqp = callPackage ../development/python-modules/pamqp { };