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

29 lines
842 B
Nix
Raw Normal View History

2017-09-15 02:30:08 +02:00
{ stdenv, buildPythonPackage, fetchPypi, isPyPy, isPy35, ncurses }:
buildPythonPackage rec {
pname = "cx_Freeze";
2017-12-30 12:22:02 +01:00
version = "5.1.1";
2017-09-15 02:30:08 +02:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2017-12-30 12:22:02 +01:00
sha256 = "2eadddde670f5c5f6cf88638a0ac4e5d5fe181292a31063275fa56c7bf22426b";
2017-09-15 02:30:08 +02:00
};
propagatedBuildInputs = [ ncurses ];
# timestamp need to come after 1980 for zipfiles and nix store is set to epoch
prePatch = ''
substituteInPlace cx_Freeze/freezer.py --replace "os.stat(module.file).st_mtime" "time.time()"
'';
# fails to find Console even though it exists on python 3.x
doCheck = false;
meta = with stdenv.lib; {
description = "A set of scripts and modules for freezing Python scripts into executables";
homepage = "http://cx-freeze.sourceforge.net/";
license = licenses.psfl;
};
}