mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
python310Packages.sphinx-design: init at 0.2.0
This commit is contained in:
parent
f5c3ceaf91
commit
7eca257a4a
35
pkgs/development/python-modules/sphinx-design/default.nix
Normal file
35
pkgs/development/python-modules/sphinx-design/default.nix
Normal file
@ -0,0 +1,35 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fetchPypi
|
||||
, flit-core
|
||||
, sphinx
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "sphinx-design";
|
||||
version = "0.2.0";
|
||||
|
||||
format = "flit";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit version;
|
||||
pname = "sphinx_design";
|
||||
sha256 = "b148a5258061a46ee826d57ea0729260f29b4e9131d2a681545e0d4f3c0f19ee";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ flit-core ];
|
||||
|
||||
propagatedBuildInputs = [ sphinx ];
|
||||
|
||||
pythonImportsCheck = [ "sphinx_design" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A sphinx extension for designing beautiful, view size responsive web components";
|
||||
homepage = "https://github.com/executablebooks/sphinx-design";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ marsam ];
|
||||
};
|
||||
}
|
@ -9984,6 +9984,8 @@ in {
|
||||
|
||||
sphinx-comments = callPackage ../development/python-modules/sphinx-comments { };
|
||||
|
||||
sphinx-design = callPackage ../development/python-modules/sphinx-design { };
|
||||
|
||||
sphinx-external-toc = callPackage ../development/python-modules/sphinx-external-toc { };
|
||||
|
||||
sphinx-jupyterbook-latex = callPackage ../development/python-modules/sphinx-jupyterbook-latex { };
|
||||
|
Loading…
Reference in New Issue
Block a user