mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
|
{ stdenv, buildPythonPackage, fetchFromGitLab, nose, pillow
|
||
|
, isPy3k, isPyPy
|
||
|
}:
|
||
|
buildPythonPackage rec {
|
||
|
name = "pypillowfight-${version}";
|
||
|
version = "0.2.4";
|
||
|
|
||
|
src = fetchFromGitLab {
|
||
|
domain = "gitlab.gnome.org";
|
||
|
group = "World";
|
||
|
owner = "OpenPaperwork";
|
||
|
repo = "libpillowfight";
|
||
|
rev = version;
|
||
|
sha256 = "0wbzfhbzim61fmkm7p7f2rwslacla1x00a6xp50haawjh9zfwc4y";
|
||
|
};
|
||
|
|
||
|
prePatch = ''
|
||
|
echo '#define INTERNAL_PILLOWFIGHT_VERSION "${version}"' > src/pillowfight/_version.h
|
||
|
'';
|
||
|
|
||
|
# 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 = [ nose ];
|
||
|
propagatedBuildInputs = [ pillow ];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "Library containing various image processing algorithms";
|
||
|
inherit (src) homepage;
|
||
|
license = licenses.gpl3Plus;
|
||
|
};
|
||
|
}
|