blob: e2e46c77602db9859dc2ef313a4792074d1e5566 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
flit-core,
}:
buildPythonPackage rec {
pname = "alabaster";
version = "1.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "sphinx-doc";
repo = "alabaster";
tag = version;
hash = "sha256-aQEhFZUJs0TptfpjQVoIVI9V9a+xKjE2OfStSaJKHGI=";
};
build-system = [ flit-core ];
pythonImportsCheck = [ "alabaster" ];
# No tests included
doCheck = false;
meta = {
changelog = "https://github.com/sphinx-doc/alabaster/blob/${src.rev}/docs/changelog.rst";
homepage = "https://github.com/sphinx-doc/alabaster";
description = "Light, configurable Sphinx theme";
license = lib.licenses.bsd3;
};
}
|