nixpkgs/pkgs/development/python-modules/cx_freeze/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, lib, buildPythonPackage, pythonOlder, fetchPypi, ncurses, importlib-metadata }:
2017-09-15 01:30:08 +01:00
buildPythonPackage rec {
pname = "cx-freeze";
version = "6.13.1";
2017-09-15 01:30:08 +01:00
src = fetchPypi {
pname = "cx_Freeze";
inherit version;
sha256 = "sha256-9pT1Ta8pLpc9krFN8KLp3b10IGyvMjiaU3Cn4eVAiaQ=";
2017-09-15 01:30:08 +01:00
};
2020-09-11 12:44:30 +01:00
disabled = pythonOlder "3.5";
2020-11-29 18:34:00 +00:00
propagatedBuildInputs = [
importlib-metadata # upstream has this for 3.8 as well
ncurses
];
2017-09-15 01:30:08 +01:00
# timestamp need to come after 1980 for zipfiles and nix store is set to epoch
postPatch = ''
2017-09-15 01:30:08 +01:00
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"
2017-09-15 01:30:08 +01:00
'';
# fails to find Console even though it exists on python 3.x
doCheck = false;
meta = with lib; {
broken = (stdenv.isLinux && stdenv.isAarch64);
2017-09-15 01:30:08 +01:00
description = "A set of scripts and modules for freezing Python scripts into executables";
homepage = "https://marcelotduarte.github.io/cx_Freeze/";
2017-09-15 01:30:08 +01:00
license = licenses.psfl;
};
}