1{ lib 2, buildPythonPackage 3, fetchPypi 4, django 5, six 6, pycrypto 7}: 8 9buildPythonPackage rec { 10 pname = "libthumbor"; 11 version = "2.0.1"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "ed4fe5f27f8f90e7285b7e6dce99c1b67d43a140bf370e989080b43d80ce25f0"; 16 }; 17 18 buildInputs = [ django ]; 19 propagatedBuildInputs = [ six pycrypto ]; 20 21 doCheck = false; 22 23 meta = with lib; { 24 description = "libthumbor is the python extension to thumbor"; 25 homepage = "https://github.com/heynemann/libthumbor"; 26 license = licenses.mit; 27 }; 28 29}