aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/grequests
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/grequests')
-rw-r--r--nixpkgs/pkgs/development/python-modules/grequests/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/grequests/default.nix b/nixpkgs/pkgs/development/python-modules/grequests/default.nix
new file mode 100644
index 00000000000..0557fe787e8
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/grequests/default.nix
@@ -0,0 +1,29 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, requests
+, gevent
+}:
+
+buildPythonPackage rec {
+ pname = "grequests";
+ version = "0.4.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "8aeccc15e60ec65c7e67ee32e9c596ab2196979815497f85cf863465a1626490";
+ };
+
+ # No tests in archive
+ doCheck = false;
+
+ propagatedBuildInputs = [ requests gevent ];
+
+ meta = with stdenv.lib; {
+ description = "Asynchronous HTTP requests";
+ homepage = https://github.com/kennethreitz/grequests;
+ license = with licenses; [ bsd2 ];
+ maintainers = with maintainers; [ matejc ];
+ };
+
+}