about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-12-21 11:36:14 +0100
committerGitHub <noreply@github.com>2023-12-21 11:36:14 +0100
commitcc76c0f75524fccc1c9924415cc9d9e5fcbbc91c (patch)
tree2cec251f5e511800a50e44949d28d6ab58f375dc
parent18c3ca7dccd208461376f4a9faeff2ff2ef5d9d6 (diff)
python311Packages.etils: update disabled
-rw-r--r--pkgs/development/python-modules/etils/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/etils/default.nix b/pkgs/development/python-modules/etils/default.nix
index 2807f3ea3604a..36c5ebb71c527 100644
--- a/pkgs/development/python-modules/etils/default.nix
+++ b/pkgs/development/python-modules/etils/default.nix
@@ -29,9 +29,9 @@
 buildPythonPackage rec {
   pname = "etils";
   version = "1.6.0";
-  format = "pyproject";
+  pyproject = true;
 
-  disabled = pythonOlder "3.8";
+  disabled = pythonOlder "3.10";
 
   src = fetchPypi {
     inherit pname version;
@@ -81,7 +81,7 @@ buildPythonPackage rec {
 
   meta = with lib; {
     changelog = "https://github.com/google/etils/blob/v${version}/CHANGELOG.md";
-    description = "Collection of eclectic utils for python";
+    description = "Collection of eclectic utils";
     homepage = "https://github.com/google/etils";
     license = licenses.asl20;
     maintainers = with maintainers; [ mcwitt ];