Unverified Commit dfe6f3e4 authored by Theodore Ni's avatar Theodore Ni
Browse files

python3.pkgs.cx_Freeze: switch to pyproject build

parent 3b4a2c7e
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -5,12 +5,16 @@
, ncurses
, importlib-metadata
, setuptools
, wheel
, patchelf
}:

buildPythonPackage rec {
  pname = "cx-freeze";
  version = "6.14.4";
  format = "pyproject";

  disabled = pythonOlder "3.5";

  src = fetchPypi {
    pname = "cx_Freeze";
@@ -18,7 +22,10 @@ buildPythonPackage rec {
    hash = "sha256-ydox+o4B0t/dYD+nDiY5CmWupt1iMzyU2fA4tCqgVcg=";
  };

  disabled = pythonOlder "3.5";
  nativeBuildInputs = [
    setuptools
    wheel
  ];

  propagatedBuildInputs = [
    importlib-metadata # upstream has this for 3.8 as well