python.pkgs.requests: 2.13.0 -> 2.18.4

This commit is contained in:
Jörg Thalheim
2017-08-27 15:57:01 +01:00
committed by Frederik Rietdijk
parent 7a73f298d9
commit ffb043b769
2 changed files with 26 additions and 19 deletions

View File

@@ -0,0 +1,25 @@
{ stdenv, fetchPypi, buildPythonPackage
, urllib3, idna, chardet, certifi
, pytest }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "requests";
version = "2.18.4";
src = fetchPypi {
inherit pname version;
sha256 = "0zi3v9nsmv9j27d0c0m1dvqyvaxz53g8m0aa1h3qanxs4irkwi4w";
};
nativeBuildInputs = [ pytest ];
propagatedBuildInputs = [ urllib3 idna chardet certifi ];
# sadly, tests require networking
doCheck = false;
meta = with stdenv.lib; {
description = "An Apache2 licensed HTTP library, written in Python, for human beings";
homepage = http://docs.python-requests.org/en/latest/;
license = licenses.asl20;
};
}