File tree 1 file changed +10
-5
lines changed
1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -28670,19 +28670,24 @@ EOF
28670
28670
28671
28671
28672
28672
grequests = buildPythonPackage rec {
28673
- name = "grequests-0.2.0";
28673
+ pname = "grequests";
28674
+ version = "0.3.0";
28675
+ name = "${pname}-${version}";
28674
28676
28675
- src = pkgs.fetchurl {
28676
- url = "mirror://pypi/g/grequests/${name}.tar.gz" ;
28677
+ src = fetchPypi {
28678
+ inherit pname version ;
28677
28679
sha256 = "0lafzax5igbh8y4x0krizr573wjsxz7bhvwygiah6qwrzv83kv5c";
28678
28680
};
28679
28681
28680
- buildInputs = with self; [ requests gevent ];
28682
+ # No tests in archive
28683
+ doCheck = false;
28684
+
28685
+ propagatedBuildInputs = with self; [ requests2 gevent ];
28681
28686
28682
28687
meta = {
28683
28688
description = "Asynchronous HTTP requests";
28684
28689
homepage = https://github.com/kennethreitz/grequests;
28685
- license = "bsd" ;
28690
+ license = with licenses; [ bsd2 ] ;
28686
28691
maintainers = with maintainers; [ matejc ];
28687
28692
};
28688
28693
};
You can’t perform that action at this time.
0 commit comments