My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/libthumbor/default.nix

43 lines
693 B

{ lib
, buildPythonPackage
, fetchPypi
, django
, six
, pycrypto
, pythonOlder
}:
buildPythonPackage rec {
pname = "libthumbor";
version = "2.0.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-1PsiFZrTDVQqy8A3nkaM5LdPiBoriRgHkklTOiczN+g=";
};
buildInputs = [
django
];
propagatedBuildInputs = [
six
pycrypto
];
doCheck = false;
pythonImportsCheck = [
"libthumbor"
];
meta = with lib; {
description = "Python extension to thumbor";
homepage = "https://github.com/heynemann/libthumbor";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}