Merge pull request #166806 from r-ryantm/auto-update/python310Packages.libthumbor

python310Packages.libthumbor: 2.0.1 -> 2.0.2
main
Fabian Affolter 2 years ago committed by GitHub
commit 6b621002aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 26
      pkgs/development/python-modules/libthumbor/default.nix

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

Loading…
Cancel
Save