Merge pull request #20219 from oxij/pkgs/python/add-a-bunch

pythonPackages: add a bunch
This commit is contained in:
Tim Steinbach 2016-11-11 15:06:25 -05:00 committed by GitHub
commit 3a6f99765c

View file

@ -7456,6 +7456,44 @@ in {
};
};
hsaudiotag = buildPythonPackage (rec {
name = "hsaudiotag-1.1.1";
disabled = isPy3k;
src = pkgs.fetchurl {
url = "mirror://pypi/h/hsaudiotag/${name}.tar.gz";
sha256 = "15hgm128p8nysfi0jb127awga3vlj0iw82l50swjpvdh01m7rda8";
};
# no tests
doCheck = false;
meta = {
description = "A pure Python library that lets one to read metadata from media files";
homepage = http://hg.hardcoded.net/hsaudiotag/;
license = licenses.bsd3;
};
});
hsaudiotag3k = buildPythonPackage (rec {
name = "hsaudiotag3k-1.1.3";
disabled = !isPy3k;
src = pkgs.fetchurl {
url = "mirror://pypi/h/hsaudiotag3k/${name}.tar.gz";
sha256 = "0bv5k5594byr2bmhh77xv10fkdpckcmxg3w380yp30aqf83rcsx3";
};
# no tests
doCheck = false;
meta = {
description = "A pure Python library that lets one to read metadata from media files";
homepage = http://hg.hardcoded.net/hsaudiotag/;
license = licenses.bsd3;
};
});
httpauth = buildPythonPackage rec {
version = "0.3";
name = "httpauth-${version}";
@ -16340,6 +16378,27 @@ in {
};
});
plyvel = buildPythonPackage (rec {
name = "plyvel-0.9";
src = pkgs.fetchurl {
url = "mirror://pypi/p/plyvel/${name}.tar.gz";
sha256 = "1scq75qyks9vmjd19bx57f2y60mkdr44ajvb12p3cjg439l96zaq";
};
buildInputs = with self; [ pkgs.leveldb ]
++ optional isPy3k pytest;
# no tests for python2
doCheck = isPy3k;
meta = {
description = "Fast and feature-rich Python interface to LevelDB";
homepage = https://github.com/wbolster/plyvel;
license = licenses.bsd3;
};
});
osc = buildPythonPackage (rec {
name = "osc-0.133+git";
disabled = isPy3k;
@ -30332,6 +30391,24 @@ in {
};
};
send2trash = buildPythonPackage (rec {
name = "Send2Trash-1.3.0";
src = pkgs.fetchurl {
url = "mirror://pypi/S/Send2Trash/${name}.tar.gz";
sha256 = "1zjq5ki02l0vl4f1xymsnqyxipx6q81a435p46db07l3mqg4dx1k";
};
# no tests
doCheck = false;
meta = {
description = "Send file to trash natively under Mac OS X, Windows and Linux";
homepage = https://github.com/hsoft/send2trash;
license = licenses.bsd3;
};
});
sigtools = buildPythonPackage rec {
name = "sigtools-${version}";
version = "1.1a3";