python.pkgs.requests: 2.13.0 -> 2.18.4
This commit is contained in:
committed by
Frederik Rietdijk
parent
7a73f298d9
commit
ffb043b769
25
pkgs/development/python-modules/requests/default.nix
Normal file
25
pkgs/development/python-modules/requests/default.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user