depot/third_party/nixpkgs/pkgs/development/python-modules/grequests/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

33 lines
609 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
requests,
gevent,
}:
buildPythonPackage rec {
pname = "grequests";
version = "0.7.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-XDPxQmjfW4+hEH2FN4Fb5v67rW7FYFJNakBLd3jPa6Y=";
};
# No tests in archive
doCheck = false;
propagatedBuildInputs = [
requests
gevent
];
meta = with lib; {
description = "Asynchronous HTTP requests";
homepage = "https://github.com/kennethreitz/grequests";
license = with licenses; [ bsd2 ];
maintainers = with maintainers; [ matejc ];
};
}