mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
6c50a1e6bf
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-cx_freeze/versions
28 lines
779 B
Nix
28 lines
779 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, ncurses }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cx_Freeze";
|
|
version = "6.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "067bgkgx7i3kw31vaviwysbb1lk91cjw9q90vklsr7nsygjxi0fa";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|