linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / dropbox / default.nix
blobca0283b2cbdc32518fa9edcdfc33a4aff75f6f7a
1 { lib, buildPythonPackage, fetchPypi
2 , pytestrunner, requests, urllib3, mock, setuptools }:
4 buildPythonPackage rec {
5   pname = "dropbox";
6   version = "10.10.0";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "df43e9e0bdcae6d610dd754a5ec72f2f91a311bbc2c8a28d076df69695b18398";
11   };
13   # Set DROPBOX_TOKEN environment variable to a valid token.
14   doCheck = false;
16   buildInputs = [ pytestrunner ];
17   propagatedBuildInputs = [ requests urllib3 mock setuptools ];
19   meta = with lib; {
20     description = "A Python library for Dropbox's HTTP-based Core and Datastore APIs";
21     homepage = "https://www.dropbox.com/developers/core/docs";
22     license = licenses.mit;
23   };