added urlgrabber-3.9.1 and removed one python/.pth related code segment
This commit is contained in:
parent
c043cd2d26
commit
c6452f372c
@ -2067,11 +2067,6 @@ let pythonPackages = python.modules // rec {
|
||||
|
||||
doCheck = false;
|
||||
|
||||
postInstall = ''
|
||||
find $out -name easy-install.pth | xargs rm -v
|
||||
find $out -name 'site.py*' | xargs rm -v
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "RDFLib is a Python library for working with RDF, a simple yet powerful language for representing information.";
|
||||
homepage = http://www.rdflib.net/;
|
||||
@ -2513,6 +2508,30 @@ let pythonPackages = python.modules // rec {
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
urlgrabber = buildPythonPackage rec {
|
||||
name = "urlgrabber-3.9.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://urlgrabber.baseurl.org/download/${name}.tar.gz";
|
||||
sha256 = "4437076c8708e5754ea04540e46c7f4f233734ee3590bb8a96389264fb0650d0";
|
||||
};
|
||||
|
||||
doCheck = false;
|
||||
|
||||
propagatedBuildInputs = [ pycurl ];
|
||||
|
||||
PYTHON_EGG_CACHE = "`pwd`/.egg-cache";
|
||||
|
||||
meta = {
|
||||
homepage = "urlgrabber.baseurl.org";
|
||||
license = "LGPLv2+";
|
||||
description = "Python module for downloading files";
|
||||
maintainers = [ stdenv.lib.maintainers.qknight ];
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
urwid = buildPythonPackage (rec {
|
||||
name = "urwid-1.0.1";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user