mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
30 lines
545 B
Nix
30 lines
545 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, django
|
|
, six
|
|
, pycrypto
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "libthumbor";
|
|
version = "1.3.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1vjhszsf8wl9k16wyg2rfjycjnawzl7z8j39bhiysbz5x4lqg91b";
|
|
};
|
|
|
|
buildInputs = [ django ];
|
|
propagatedBuildInputs = [ six pycrypto ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "libthumbor is the python extension to thumbor";
|
|
homepage = https://github.com/heynemann/libthumbor;
|
|
license = licenses.mit;
|
|
};
|
|
|
|
}
|