Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 20 lines 514 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, pycurl, six }: 2 3buildPythonPackage rec { 4 pname = "urlgrabber"; 5 version = "4.0.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "0fazs574fgixd525cn2dh027f4qf0c0gbwcfyfkhc6fkblfa1ibr"; 10 }; 11 12 propagatedBuildInputs = [ pycurl six ]; 13 14 meta = with stdenv.lib; { 15 homepage = http://urlgrabber.baseurl.org; 16 license = licenses.lgpl2Plus; 17 description = "Python module for downloading files"; 18 maintainers = with maintainers; [ qknight ]; 19 }; 20}