summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorSymphorien Gibol <symphorien+git@xlumurb.eu>2018-09-10 17:29:08 +0200
committerSymphorien Gibol <symphorien+git@xlumurb.eu>2018-09-14 14:32:32 +0200
commitcd599c8fa6b636ece76eebfc49a2cd0439002ef2 (patch)
tree7a1fbc9fa79b11517a3bc3cacac273eb7b82a423 /pkgs/top-level
parent5314a74ee6d8eefcd4f9a5cc6e676643baf36180 (diff)
downloadnixpkgs-cd599c8fa6b636ece76eebfc49a2cd0439002ef2.tar
nixpkgs-cd599c8fa6b636ece76eebfc49a2cd0439002ef2.tar.gz
nixpkgs-cd599c8fa6b636ece76eebfc49a2cd0439002ef2.tar.bz2
nixpkgs-cd599c8fa6b636ece76eebfc49a2cd0439002ef2.tar.lz
nixpkgs-cd599c8fa6b636ece76eebfc49a2cd0439002ef2.tar.xz
nixpkgs-cd599c8fa6b636ece76eebfc49a2cd0439002ef2.tar.zst
nixpkgs-cd599c8fa6b636ece76eebfc49a2cd0439002ef2.zip
pythonPackages.pypillowfight: 0.2 -> 0.2.4
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/python-packages.nix30
1 files changed, 1 insertions, 29 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 9b98a1af789..a35b9e095b1 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -3918,35 +3918,7 @@ in {
     };
   };
 
-  pypillowfight = buildPythonPackage rec {
-    name = "pypillowfight-${version}";
-    version = "0.2.1";
-
-    src = pkgs.fetchFromGitHub {
-      owner = "jflesch";
-      repo = "libpillowfight";
-      rev = version;
-      sha256 = "1rwmajsy9qhl3qhhy5mw0xmr3n8abxcq8baidpn0sxv6yjg2369z";
-    };
-
-    # Disable tests because they're designed to only work on Debian:
-    # https://github.com/jflesch/libpillowfight/issues/2#issuecomment-268259174
-    doCheck = false;
-
-    # Python 2.x is not supported, see:
-    # https://github.com/jflesch/libpillowfight/issues/1
-    disabled = !isPy3k && !isPyPy;
-
-    # This is needed by setup.py regardless of whether tests are enabled.
-    buildInputs = [ self.nose ];
-    propagatedBuildInputs = [ self.pillow ];
-
-    meta = {
-      description = "Library containing various image processing algorithms";
-      homepage = "https://github.com/jflesch/libpillowfight";
-      license = licenses.gpl3Plus;
-    };
-  };
+  pypillowfight = callPackage ../development/python-modules/pypillowfight { };
 
   pyprind = callPackage ../development/python-modules/pyprind { };