pythonPackages.urllib3: Fix buildInputs and meta.description
This commit is contained in:
parent
b1ca0f465f
commit
4c183f4b42
@ -1,5 +1,6 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchPypi
|
{ stdenv, buildPythonPackage, fetchPypi
|
||||||
, coverage, tornado, mock, nose, psutil, pysocks }:
|
, pytest, mock, tornado, pyopenssl, cryptography
|
||||||
|
, idna, certifi, ipaddress, pysocks }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "urllib3";
|
pname = "urllib3";
|
||||||
@ -22,11 +23,12 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
buildInputs = [ coverage tornado mock nose psutil pysocks ];
|
checkInputs = [ pytest mock tornado ];
|
||||||
|
propagatedBuildInputs = [ pyopenssl cryptography idna certifi ipaddress pysocks ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A Python library for Dropbox's HTTP-based Core and Datastore APIs";
|
description = "Powerful, sanity-friendly HTTP client for Python";
|
||||||
homepage = https://www.dropbox.com/developers/core/docs;
|
homepage = https://github.com/shazow/urllib3;
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user