mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 04:12:44 +03:00
pythonPackages.grequests: 0.2.0 -> 0.3.0
This commit is contained in:
parent
ea929311bb
commit
959695dd5f
@ -28670,19 +28670,24 @@ EOF
|
|||||||
|
|
||||||
|
|
||||||
grequests = buildPythonPackage rec {
|
grequests = buildPythonPackage rec {
|
||||||
name = "grequests-0.2.0";
|
pname = "grequests";
|
||||||
|
version = "0.3.0";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
src = fetchPypi {
|
||||||
url = "mirror://pypi/g/grequests/${name}.tar.gz";
|
inherit pname version;
|
||||||
sha256 = "0lafzax5igbh8y4x0krizr573wjsxz7bhvwygiah6qwrzv83kv5c";
|
sha256 = "0lafzax5igbh8y4x0krizr573wjsxz7bhvwygiah6qwrzv83kv5c";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = with self; [ requests gevent ];
|
# No tests in archive
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
propagatedBuildInputs = with self; [ requests2 gevent ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Asynchronous HTTP requests";
|
description = "Asynchronous HTTP requests";
|
||||||
homepage = https://github.com/kennethreitz/grequests;
|
homepage = https://github.com/kennethreitz/grequests;
|
||||||
license = "bsd";
|
license = with licenses; [ bsd2 ];
|
||||||
maintainers = with maintainers; [ matejc ];
|
maintainers = with maintainers; [ matejc ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user