depot/third_party/nixpkgs/pkgs/development/python-modules/pallets-sphinx-themes/default.nix
Default email 5e7c2d6cef Project import generated by Copybara.
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
2023-10-09 21:29:22 +02:00

26 lines
691 B
Nix

{ lib, buildPythonPackage, fetchFromGitHub, sphinx, packaging }:
buildPythonPackage rec {
pname = "pallets-sphinx-themes";
version = "2.1.1";
src = fetchFromGitHub {
owner = "pallets";
repo = "pallets-sphinx-themes";
rev = "refs/tags/${version}";
sha256 = "sha256-Z03rsqkwF2rYaqRZflf5qc5EdHPIEcEcB1ftYIm5DQs=";
};
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 ];
};
}