Files
nixpkgs/pkgs/by-name/cr/crudini/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

61 lines
1.2 KiB
Nix

{
lib,
fetchFromGitHub,
python3Packages,
help2man,
installShellFiles,
}:
python3Packages.buildPythonApplication rec {
pname = "crudini";
version = "0.9.6";
format = "pyproject";
src = fetchFromGitHub {
owner = "pixelb";
repo = "crudini";
tag = version;
hash = "sha256-XW9pdP+aie6v9h35gLYM0wVrcsh+dcEB7EueATOV4w4=";
};
postPatch = ''
patchShebangs crudini.py crudini-help tests/test.sh
'';
nativeBuildInputs = [
help2man
installShellFiles
python3Packages.setuptools
python3Packages.setuptools-scm
python3Packages.wheel
];
propagatedBuildInputs = with python3Packages; [ iniparse ];
postInstall = ''
# this just creates the man page
make all
install -Dm444 -t $out/share/doc/${pname} README.md EXAMPLES
installManPage *.1
'';
checkPhase = ''
runHook preCheck
pushd tests >/dev/null
./test.sh
popd >/dev/null
runHook postCheck
'';
meta = with lib; {
description = "Utility for manipulating ini files";
homepage = "https://www.pixelbeat.org/programs/crudini/";
license = licenses.gpl2Only;
maintainers = with maintainers; [ peterhoeg ];
mainProgram = "crudini";
};
}