summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorTim Steinbach <NeQuissimus@users.noreply.github.com>2016-11-11 15:06:25 -0500
committerGitHub <noreply@github.com>2016-11-11 15:06:25 -0500
commit3a6f99765c965775f37b0ef97056994327fed4c9 (patch)
treef7fce0dcb48b7f56070364f938275bf7f0ce0042 /pkgs
parent843cfd67418358bad6e739cf7fc3b3b115cb6ad8 (diff)
parent79fb5d45a4e65ec21d56326b028f56907e97c49e (diff)
downloadnixlib-3a6f99765c965775f37b0ef97056994327fed4c9.tar
nixlib-3a6f99765c965775f37b0ef97056994327fed4c9.tar.gz
nixlib-3a6f99765c965775f37b0ef97056994327fed4c9.tar.bz2
nixlib-3a6f99765c965775f37b0ef97056994327fed4c9.tar.lz
nixlib-3a6f99765c965775f37b0ef97056994327fed4c9.tar.xz
nixlib-3a6f99765c965775f37b0ef97056994327fed4c9.tar.zst
nixlib-3a6f99765c965775f37b0ef97056994327fed4c9.zip
Merge pull request #20219 from oxij/pkgs/python/add-a-bunch
pythonPackages: add a bunch
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/top-level/python-packages.nix77
1 files changed, 77 insertions, 0 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 43266c0b1b85..59dfde790ae0 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -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";