blob: eb0f912a4bcdbf9431de4639629d5d060ea0f30c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
{
lib,
buildPythonPackage,
fetchPypi,
django,
six,
pycrypto,
}:
buildPythonPackage rec {
pname = "libthumbor";
version = "2.0.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-1PsiFZrTDVQqy8A3nkaM5LdPiBoriRgHkklTOiczN+g=";
};
buildInputs = [ django ];
propagatedBuildInputs = [
six
pycrypto
];
doCheck = false;
pythonImportsCheck = [ "libthumbor" ];
meta = {
description = "Python extension to thumbor";
homepage = "https://github.com/heynemann/libthumbor";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|