depot/third_party/nixpkgs/pkgs/development/python-modules/pallets-sphinx-themes/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

27 lines
716 B
Nix

{ lib, buildPythonPackage, fetchFromGitHub, sphinx, packaging }:
buildPythonPackage rec {
pname = "pallets-sphinx-themes";
version = "2.1.1";
format = "setuptools";
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 ];
};
}