bitwarden-desktop: 2024.12.0 -> 2024.12.1 (#373177)
[NixPkgs.git] / pkgs / development / python-modules / alabaster / default.nix
blob5c935659ca08b1dae5b6f3e947df56d78ae747a8
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   flit-core,
6   pygments,
7 }:
9 buildPythonPackage rec {
10   pname = "alabaster";
11   version = "0.7.16";
12   pyproject = true;
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-dai5nCil2tUN1/jM3UR6Eh3bOJLanlPRylzKMQbVjWU=";
17   };
19   nativeBuildInputs = [ flit-core ];
21   propagatedBuildInputs = [ pygments ];
23   # No tests included
24   doCheck = false;
26   meta = with lib; {
27     homepage = "https://github.com/bitprophet/alabaster";
28     description = "Sphinx theme";
29     license = licenses.bsd3;
30   };