biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / cx-freeze / default.nix
blobd8e05e3e70fe0a1730c4358e326c9be18d7d8509
2   lib,
3   buildPythonPackage,
4   distutils,
5   fetchPypi,
6   pythonOlder,
7   ncurses,
8   packaging,
9   setuptools,
10   filelock,
11   wheel,
12   patchelf,
15 buildPythonPackage rec {
16   pname = "cx-freeze";
17   version = "7.2.0";
18   pyproject = true;
20   disabled = pythonOlder "3.11";
22   src = fetchPypi {
23     pname = "cx_freeze";
24     inherit version;
25     hash = "sha256-xX9xAbTTUTJGSx7IjLiUjDt8W07OS7NUwWCRWJyzNYM=";
26   };
28   postPatch = ''
29     sed -i /patchelf/d pyproject.toml
30     # Build system requirements
31     substituteInPlace pyproject.toml \
32       --replace-fail "setuptools>=65.6.3,<71" "setuptools" \
33       --replace-fail "wheel>=0.42.0,<=0.43.0" "wheel"
34   '';
36   build-system = [
37     setuptools
38     wheel
39   ];
41   buildInputs = [ ncurses ];
43   dependencies = [
44     distutils
45     filelock
46     packaging
47     setuptools
48     wheel
49   ];
51   makeWrapperArgs = [
52     "--prefix"
53     "PATH"
54     ":"
55     (lib.makeBinPath [ patchelf ])
56   ];
58   # Fails to find Console even though it exists on python 3.x
59   doCheck = false;
61   meta = with lib; {
62     description = "Set of scripts and modules for freezing Python scripts into executables";
63     homepage = "https://marcelotduarte.github.io/cx_Freeze/";
64     changelog = "https://github.com/marcelotduarte/cx_Freeze/releases/tag/${version}";
65     license = licenses.psfl;
66     maintainers = [ ];
67     mainProgram = "cxfreeze";
68   };