nixpkgs/pkgs/development/python-modules/libthumbor/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

41 lines
672 B
Nix

{
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 = [ ];
};
}