mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-05 03:34:12 +00:00
python3.pkgs.wrapt: build offline documentation
X-Reverse-Dependencies: python3.pkgs.aiobotocore
This commit is contained in:
parent
3270c13879
commit
27ce8eb0d1
@ -2,11 +2,14 @@
|
|||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
|
, sphinxHook
|
||||||
|
, sphinx-rtd-theme
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "wrapt";
|
pname = "wrapt";
|
||||||
version = "1.14.1";
|
version = "1.14.1";
|
||||||
|
outputs = [ "out" "doc" ];
|
||||||
format = "setuptools";
|
format = "setuptools";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
@ -20,6 +23,11 @@ buildPythonPackage rec {
|
|||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
];
|
];
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
sphinxHook
|
||||||
|
sphinx-rtd-theme
|
||||||
|
];
|
||||||
|
|
||||||
pythonImportsCheck = [
|
pythonImportsCheck = [
|
||||||
"wrapt"
|
"wrapt"
|
||||||
];
|
];
|
||||||
|
Loading…
Reference in New Issue
Block a user