Merge pull request #134313 from Luflosi/add-furo
This commit is contained in:
commit
80779b711b
2 changed files with 35 additions and 0 deletions
33
pkgs/development/python-modules/furo/default.nix
Normal file
33
pkgs/development/python-modules/furo/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, pythonOlder
|
||||||
|
, fetchPypi
|
||||||
|
, sphinx
|
||||||
|
, beautifulsoup4
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "furo";
|
||||||
|
version = "2021.8.11b42";
|
||||||
|
format = "flit";
|
||||||
|
disable = pythonOlder "3.6";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "sha256-rhi2T57EfidQV1IHBkplCbzLlBCC5gVGmbkCf40s0qU=";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
sphinx
|
||||||
|
beautifulsoup4
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "furo" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A clean customizable documentation theme for Sphinx";
|
||||||
|
homepage = "https://github.com/pradyunsg/furo";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ Luflosi ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -2784,6 +2784,8 @@ in {
|
||||||
|
|
||||||
furl = callPackage ../development/python-modules/furl { };
|
furl = callPackage ../development/python-modules/furl { };
|
||||||
|
|
||||||
|
furo = callPackage ../development/python-modules/furo { };
|
||||||
|
|
||||||
fuse = callPackage ../development/python-modules/fuse-python {
|
fuse = callPackage ../development/python-modules/fuse-python {
|
||||||
inherit (pkgs) fuse;
|
inherit (pkgs) fuse;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue