4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
33 lines
922 B
Nix
33 lines
922 B
Nix
{ lib, stdenv, buildPythonPackage, pythonOlder, fetchPypi, ncurses, importlib-metadata }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cx_Freeze";
|
|
version = "6.4.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "043513b85e33038e38cc0571cea1f3ee8044ec083891c9a5dad1d436894424ea";
|
|
};
|
|
|
|
disabled = pythonOlder "3.5";
|
|
|
|
propagatedBuildInputs = [
|
|
importlib-metadata # upstream has this for 3.8 as well
|
|
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 lib; {
|
|
description = "A set of scripts and modules for freezing Python scripts into executables";
|
|
homepage = "http://cx-freeze.sourceforge.net/";
|
|
license = licenses.psfl;
|
|
};
|
|
}
|