nixpkgs/pkgs/development/python-modules/grequests/default.nix

30 lines
591 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
, requests
, gevent
}:
buildPythonPackage rec {
pname = "grequests";
2019-10-24 07:47:34 +01:00
version = "0.4.0";
src = fetchPypi {
inherit pname version;
2019-10-24 07:47:34 +01:00
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 ];
};
}