blob: dad95e81b4a351dea7cafe8be3d2957b81cd1bf5 (
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
34
|
{
lib,
buildPythonPackage,
fetchPypi,
flit-core,
sphinx,
}:
buildPythonPackage rec {
pname = "sphinx-design";
version = "0.6.1";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "sphinx_design";
hash = "sha256-tE7qNxk4bQTXZcGoJXysorPm+EIdezpedCwP1F+E5jI=";
};
nativeBuildInputs = [ flit-core ];
propagatedBuildInputs = [ sphinx ];
pythonImportsCheck = [ "sphinx_design" ];
meta = {
description = "Sphinx extension for designing beautiful, view size responsive web components";
homepage = "https://github.com/executablebooks/sphinx-design";
changelog = "https://github.com/executablebooks/sphinx-design/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|