Unverified Commit 5eda4619 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #265605 from r-ryantm/auto-update/python310Packages.cx-freeze

python310Packages.cx-freeze: 6.15.7 -> 6.15.10
parents 25590a33 0a0b069b
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -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";