about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2023-11-05 14:12:43 +0100
committerGitHub <noreply@github.com>2023-11-05 14:12:43 +0100
commit25590a332c37c4b65dee99267f87ed5989729a7a (patch)
tree8571f81bb1287702ce5fc920bfb88005f5205b28
parent395c5585daa247828d16761bc54ea898d520aee8 (diff)
parent5bc96d1b9d3234222001c78c114a54620d4bfab5 (diff)
downloadnixlib-25590a332c37c4b65dee99267f87ed5989729a7a.tar
nixlib-25590a332c37c4b65dee99267f87ed5989729a7a.tar.gz
nixlib-25590a332c37c4b65dee99267f87ed5989729a7a.tar.bz2
nixlib-25590a332c37c4b65dee99267f87ed5989729a7a.tar.lz
nixlib-25590a332c37c4b65dee99267f87ed5989729a7a.tar.xz
nixlib-25590a332c37c4b65dee99267f87ed5989729a7a.tar.zst
nixlib-25590a332c37c4b65dee99267f87ed5989729a7a.zip
Merge pull request #265629 from r-ryantm/auto-update/python310Packages.derpconf
python310Packages.derpconf: 0.8.3 -> 0.8.4
-rw-r--r--pkgs/development/python-modules/derpconf/default.nix26
1 files changed, 21 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/derpconf/default.nix b/pkgs/development/python-modules/derpconf/default.nix
index cc7b6870ad82..b3a4dd9d35d8 100644
--- a/pkgs/development/python-modules/derpconf/default.nix
+++ b/pkgs/development/python-modules/derpconf/default.nix
@@ -1,19 +1,35 @@
-{ lib, buildPythonPackage, fetchPypi, six }:
+{ lib
+, buildPythonPackage
+, fetchPypi
+, six
+, pythonOlder
+}:
 
 buildPythonPackage rec {
   pname = "derpconf";
-  version = "0.8.3";
+  version = "0.8.4";
+  format = "setuptools";
+
+  disabled = pythonOlder "3.9";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "1bb152d8a1cf5c2a6d629bf29acd4af0c00811339642fc0a56172b0a83b31a15";
+    hash = "sha256-66MOqcWIiqJrORJDgAH5iUblHyqJvuf9DIBN56XjKwU=";
   };
 
-  propagatedBuildInputs = [ six ];
+  propagatedBuildInputs = [
+    six
+  ];
+
+  pythonImportsCheck = [
+    "derpconf"
+  ];
 
   meta = with lib; {
-    description = "derpconf abstracts loading configuration files for your app";
+    description = "Module to abstract loading configuration files for your app";
     homepage = "https://github.com/globocom/derpconf";
+    changelog = "https://github.com/globocom/derpconf/releases/tag/${version}";
     license = licenses.mit;
+    maintainers = with maintainers; [ ];
   };
 }