4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ lib, stdenv, buildPythonPackage, fetchFromGitLab, nose, pillow
|
|
, isPy3k, isPyPy
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "pypillowfight";
|
|
version = "0.3.0";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.gnome.org";
|
|
group = "World";
|
|
owner = "OpenPaperwork";
|
|
repo = "libpillowfight";
|
|
rev = version;
|
|
sha256 = "096242v425mlqqj5g1giy59p7grxp05g78w6bk37vzph98jrgv3w";
|
|
};
|
|
|
|
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 lib; {
|
|
description = "Library containing various image processing algorithms";
|
|
inherit (src.meta) homepage;
|
|
license = licenses.gpl3Plus;
|
|
};
|
|
}
|