python3.pkgs.dropbox: build offline html documentation

main
Dmitry Bogatov 2 years ago
parent 3bb2ac5adf
commit 23d3cd040e
No known key found for this signature in database
  1. 3
      pkgs/development/python-modules/dropbox/default.nix

@ -8,6 +8,7 @@
, mock
, pytest-mock
, pytestCheckHook
, sphinxHook
}:
buildPythonPackage rec {
@ -16,6 +17,7 @@ buildPythonPackage rec {
format = "setuptools";
disabled = pythonOlder "3.7";
outputs = ["out" "doc"];
src = fetchFromGitHub {
owner = "dropbox";
@ -46,6 +48,7 @@ buildPythonPackage rec {
pythonImportsCheck = [
"dropbox"
];
nativeBuildInputs = [ sphinxHook ];
# Set SCOPED_USER_DROPBOX_TOKEN environment variable to a valid value.
disabledTests = [

Loading…
Cancel
Save