mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
9842c4b107
Idea shamelessly stolen from 4e60b0efae
.
I realized that I don't really know anymore where I'm listed as maintainer and what
I'm actually (co)-maintaining which means that I can't proactively take
care of packages I officially maintain.
As I don't have the time, energy and motivation to take care of stuff I
was interested in 1 or 2 years ago (or packaged for someone else in the
past), I decided that I make this explicit by removing myself from several
packages and adding myself in some other stuff I'm now interested in.
I've seen it several times now that people remove themselves from a
package without removing the package if it's unmaintained after that
which is why I figured that it's fine in my case as the affected pkgs
are rather low-prio and were pretty easy to maintain.
91 lines
2.5 KiB
Nix
91 lines
2.5 KiB
Nix
{ buildPythonPackage, python, tornado, pycrypto, pycurl, pytz
|
|
, pillow, derpconf, python_magic, libthumbor, webcolors
|
|
, piexif, futures, statsd, thumborPexif, fetchFromGitHub, isPy3k, lib
|
|
, mock, raven, nose, yanc, remotecv, pyssim, cairosvg, preggy, opencv3
|
|
, pkgs, coreutils, substituteAll
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "thumbor";
|
|
version = "6.7.0";
|
|
|
|
disabled = isPy3k; # see https://github.com/thumbor/thumbor/issues/1004
|
|
|
|
# Tests aren't included in PyPI tarball so use GitHub instead
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1qv02jz7ivn38dsywp7nxrlflly86x9pm2pk3yqi8m8myhc7lipg";
|
|
};
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./0001-Don-t-use-which-implementation-to-find-required-exec.patch;
|
|
gifsicle = "${pkgs.gifsicle}/bin/gifsicle";
|
|
exiftool = "${pkgs.exiftool}/bin/exiftool";
|
|
jpegtran = "${pkgs.libjpeg}/bin/jpegtran";
|
|
ffmpeg = "${pkgs.ffmpeg}/bin/ffmpeg";
|
|
})
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace "setup.py" \
|
|
--replace '"argparse",' "" ${lib.optionalString isPy3k ''--replace '"futures",' ""''}
|
|
sed -i setup.py \
|
|
-e 's/piexif[^"]*/piexif/;s/Pillow[^"]*/Pillow/'
|
|
substituteInPlace "tests/test_utils.py" \
|
|
--replace "/bin/ls" "${coreutils}/bin/ls"
|
|
substituteInPlace "tests/detectors/test_face_detector.py" \
|
|
--replace "./thumbor" "$out/lib/${python.libPrefix}/site-packages/thumbor"
|
|
substituteInPlace "tests/detectors/test_glasses_detector.py" \
|
|
--replace "./thumbor" "$out/lib/${python.libPrefix}/site-packages/thumbor"
|
|
'';
|
|
|
|
checkInputs = [
|
|
nose
|
|
pyssim
|
|
preggy
|
|
mock
|
|
yanc
|
|
remotecv
|
|
raven
|
|
pkgs.redis
|
|
pkgs.glibcLocales
|
|
pkgs.gifsicle
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
tornado
|
|
pycrypto
|
|
pycurl
|
|
pytz
|
|
pillow
|
|
derpconf
|
|
python_magic
|
|
libthumbor
|
|
opencv3
|
|
webcolors
|
|
piexif
|
|
statsd
|
|
cairosvg
|
|
] ++ lib.optionals (!isPy3k) [ futures thumborPexif ];
|
|
|
|
# Remove the source tree before running nosetests because otherwise nosetests
|
|
# uses that instead of the installed package. Is there some other way to
|
|
# achieve this?
|
|
checkPhase = ''
|
|
redis-server --port 6668 --requirepass hey_you &
|
|
rm -r thumbor
|
|
export LC_ALL="en_US.UTF-8"
|
|
nosetests -v --with-yanc -s tests/ -e test_redeye_applied
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A smart imaging service";
|
|
homepage = https://github.com/thumbor/thumbor/wiki;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|