python312Packages.dmgbuild: init at 1.6.2 (#351577)

This commit is contained in:
Aleksana 2024-10-28 23:10:19 +08:00 committed by GitHub
commit e024bbeb50
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 58 additions and 0 deletions

View File

@ -0,0 +1,56 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
ds-store,
importlib-resources,
mac-alias,
}:
buildPythonPackage rec {
pname = "dmgbuild";
version = "1.6.2";
pyproject = true;
src = fetchFromGitHub {
owner = "dmgbuild";
repo = "dmgbuild";
rev = "refs/tags/v${version}";
hash = "sha256-PozYxmXumFnptIgb4FM4b/Q5tx0MIS2bVw2kCuGucA8=";
};
postPatch = ''
# relax all deps
substituteInPlace pyproject.toml \
--replace-fail "==" ">="
'';
build-system = [
setuptools
];
dependencies = [
ds-store
importlib-resources
mac-alias
];
pythonImportsCheck = [
"dmgbuild"
];
# require permissions to access TextEditor.app
# https://github.com/dmgbuild/dmgbuild/blob/refs/tags/v1.6.2/tests/examples/settings.py#L17
doCheck = false;
meta = {
description = "MacOS command line utility to build disk images";
homepage = "https://github.com/dmgbuild/dmgbuild";
changelog = "https://github.com/dmgbuild/dmgbuild/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ moraxyc ];
mainProgram = "dmgbuild";
platforms = lib.platforms.darwin;
};
}

View File

@ -3622,6 +3622,8 @@ self: super: with self; {
dmenu-python = callPackage ../development/python-modules/dmenu { };
dmgbuild = callPackage ../development/python-modules/dmgbuild { };
dmt-core = callPackage ../development/python-modules/dmt-core { };
dm-control = callPackage ../development/python-modules/dm-control { };