about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2023-11-05 14:12:53 +0100
committerGitHub <noreply@github.com>2023-11-05 14:12:53 +0100
commit5eda4619591bc659942cd03d1bb3b04925bb1435 (patch)
treedf622eae5c4d539192c6133c95393016b3c83957 /pkgs
parent25590a332c37c4b65dee99267f87ed5989729a7a (diff)
parent0a0b069bbc1fe1b59bcd3166a0468abd140b6847 (diff)
Merge pull request #265605 from r-ryantm/auto-update/python310Packages.cx-freeze
python310Packages.cx-freeze: 6.15.7 -> 6.15.10
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/cx-freeze/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/cx-freeze/default.nix b/pkgs/development/python-modules/cx-freeze/default.nix
index db03a359a6bd0..e8b27794ae466 100644
--- a/pkgs/development/python-modules/cx-freeze/default.nix
+++ b/pkgs/development/python-modules/cx-freeze/default.nix
@@ -11,15 +11,15 @@
 
 buildPythonPackage rec {
   pname = "cx-freeze";
-  version = "6.15.7";
+  version = "6.15.10";
   format = "pyproject";
 
-  disabled = pythonOlder "3.5";
+  disabled = pythonOlder "3.8";
 
   src = fetchPypi {
     pname = "cx_Freeze";
     inherit version;
-    hash = "sha256-+X9FWkpG7gwHbZIqKftT7/RioWXdBCP6J+J8KkRTtAs=";
+    hash = "sha256-Bc0md1lpL1EYYdIoYNNeKgW/v3OPliwVdhi7jHcdIyA=";
   };
 
   nativeBuildInputs = [
@@ -55,6 +55,7 @@ buildPythonPackage rec {
   meta = with lib; {
     description = "A set of scripts and modules for freezing Python scripts into executables";
     homepage = "https://marcelotduarte.github.io/cx_Freeze/";
+    changelog = "https://github.com/marcelotduarte/cx_Freeze/releases/tag/${version}";
     license = licenses.psfl;
     maintainers = with maintainers; [ ];
     mainProgram = "cxfreeze";