2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, buildPythonPackage, fetchPypi, pycurl, six }:
|
2017-09-16 05:01:35 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "urlgrabber";
|
2019-10-24 07:47:51 +01:00
|
|
|
version = "4.1.0";
|
2017-09-16 05:01:35 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-24 07:47:51 +01:00
|
|
|
sha256 = "075af8afabae6362482d254e5ac3ffa595d1766117b684e53d9c25c2e937e139";
|
2017-09-16 05:01:35 +01:00
|
|
|
};
|
|
|
|
|
2019-08-16 17:24:35 +01:00
|
|
|
propagatedBuildInputs = [ pycurl six ];
|
2017-09-16 05:01:35 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://urlgrabber.baseurl.org";
|
2017-09-16 05:01:35 +01:00
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
description = "Python module for downloading files";
|
|
|
|
maintainers = with maintainers; [ qknight ];
|
|
|
|
};
|
|
|
|
}
|