python3Packages.cx_Freeze: relax setuptools constraint
This commit is contained in:
parent
14fbd3df87
commit
1d0965044e
@ -1,11 +1,12 @@
|
||||
{ stdenv, lib, buildPythonPackage, pythonOlder, fetchPypi, ncurses, importlib-metadata }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "cx_Freeze";
|
||||
pname = "cx-freeze";
|
||||
version = "6.11.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
pname = "cx_Freeze";
|
||||
inherit version;
|
||||
sha256 = "sha256-jzowyeM5TykGVeNG07RgkQZWswrGNHqHSZu1rTZcbnw=";
|
||||
};
|
||||
|
||||
@ -17,8 +18,11 @@ buildPythonPackage rec {
|
||||
];
|
||||
|
||||
# timestamp need to come after 1980 for zipfiles and nix store is set to epoch
|
||||
prePatch = ''
|
||||
postPatch = ''
|
||||
substituteInPlace cx_Freeze/freezer.py --replace "os.stat(module.file).st_mtime" "time.time()"
|
||||
|
||||
substituteInPlace setup.cfg \
|
||||
--replace "setuptools>=59.0.1,<=60.10.0" "setuptools>=59.0.1"
|
||||
'';
|
||||
|
||||
# fails to find Console even though it exists on python 3.x
|
||||
|
Loading…
Reference in New Issue
Block a user