about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2022-04-02 22:17:39 +0200
committerGitHub <noreply@github.com>2022-04-02 22:17:39 +0200
commit6b621002aa7a99a7282b1a46b43ffebe824ed81d (patch)
treec975ac4942cfb28ce8d1c3175f97917ec3f709d3 /pkgs
parent0d7f0f7cf954d96c243b6391e11253de86e5d5a8 (diff)
parent00b41eee6bf6cf05390b46ad6c811cba91fafe1f (diff)
downloadnixlib-6b621002aa7a99a7282b1a46b43ffebe824ed81d.tar
nixlib-6b621002aa7a99a7282b1a46b43ffebe824ed81d.tar.gz
nixlib-6b621002aa7a99a7282b1a46b43ffebe824ed81d.tar.bz2
nixlib-6b621002aa7a99a7282b1a46b43ffebe824ed81d.tar.lz
nixlib-6b621002aa7a99a7282b1a46b43ffebe824ed81d.tar.xz
nixlib-6b621002aa7a99a7282b1a46b43ffebe824ed81d.tar.zst
nixlib-6b621002aa7a99a7282b1a46b43ffebe824ed81d.zip
Merge pull request #166806 from r-ryantm/auto-update/python310Packages.libthumbor
python310Packages.libthumbor: 2.0.1 -> 2.0.2
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/libthumbor/default.nix26
1 files changed, 20 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/libthumbor/default.nix b/pkgs/development/python-modules/libthumbor/default.nix
index c3d8ec9526ff..0fdb4c4fab94 100644
--- a/pkgs/development/python-modules/libthumbor/default.nix
+++ b/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; [ ];
   };
-
 }