a19cd4ffb1
This reverts commit65a333600d. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 /758551e458
58 lines
1.2 KiB
Nix
58 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonOlder,
|
|
unittestCheckHook,
|
|
altgraph,
|
|
setuptools,
|
|
typing-extensions,
|
|
pyinstaller,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "macholib";
|
|
version = "1.16.3";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ronaldoussoren";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-bTql10Ceny4fBCxnEWz1m1wi03EWMDW9u99IQiWYbnY=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies =
|
|
[
|
|
altgraph
|
|
]
|
|
++ lib.optionals (pythonOlder "3.11") [
|
|
typing-extensions
|
|
];
|
|
|
|
# Checks assume to find darwin specific libraries
|
|
doCheck = stdenv.buildPlatform.isDarwin;
|
|
nativeCheckInputs = [
|
|
unittestCheckHook
|
|
];
|
|
|
|
passthru.tests = {
|
|
inherit pyinstaller; # Requires macholib for darwin
|
|
};
|
|
|
|
preCheck = ''
|
|
export PATH="$PATH:$out/bin"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Analyze and edit Mach-O headers, the executable format used by Mac OS X.";
|
|
homepage = "https://github.com/ronaldoussoren/macholib";
|
|
changelog = "https://github.com/ronaldoussoren/macholib/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ eveeifyeve ];
|
|
};
|
|
}
|