python3Packages.dropbox: add missing stone dep
This commit is contained in:
parent
bdeaccefbf
commit
e095b69930
@ -1,5 +1,5 @@
|
|||||||
{ lib, buildPythonPackage, fetchPypi
|
{ lib, buildPythonPackage, fetchPypi
|
||||||
, pytestrunner, requests, urllib3, mock, setuptools }:
|
, pytestrunner, requests, urllib3, mock, setuptools, stone }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "dropbox";
|
pname = "dropbox";
|
||||||
@ -10,11 +10,16 @@ buildPythonPackage rec {
|
|||||||
sha256 = "7ba43384029424779a4b3ec8d5832362c5c0f37cd644be2fb87e2b30a569849e";
|
sha256 = "7ba43384029424779a4b3ec8d5832362c5c0f37cd644be2fb87e2b30a569849e";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace setup.py \
|
||||||
|
--replace "pytest-runner == 5.2.0" "pytest-runner"
|
||||||
|
'';
|
||||||
|
|
||||||
# Set DROPBOX_TOKEN environment variable to a valid token.
|
# Set DROPBOX_TOKEN environment variable to a valid token.
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
buildInputs = [ pytestrunner ];
|
nativeBuildInputs = [ pytestrunner ];
|
||||||
propagatedBuildInputs = [ requests urllib3 mock setuptools ];
|
propagatedBuildInputs = [ requests urllib3 mock setuptools stone ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A Python library for Dropbox's HTTP-based Core and Datastore APIs";
|
description = "A Python library for Dropbox's HTTP-based Core and Datastore APIs";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user