Skip to content

Commit

Permalink
Merge pull request #20219 from oxij/pkgs/python/add-a-bunch
Browse files Browse the repository at this point in the history
pythonPackages: add a bunch
  • Loading branch information
NeQuissimus committed Nov 11, 2016
2 parents 843cfd6 + 79fb5d4 commit 3a6f997
Showing 1 changed file with 77 additions and 0 deletions.
77 changes: 77 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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}";
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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";
Expand Down

0 comments on commit 3a6f997

Please sign in to comment.