2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-05 04:23:47 +00:00
nixpkgs/pkgs/tools/misc/crudini/default.nix
2023-08-30 12:08:04 +02:00

71 lines
1.5 KiB
Nix

{ lib
, fetchFromGitHub
, fetchpatch
, python3Packages
, help2man
, installShellFiles
}:
python3Packages.buildPythonApplication rec {
pname = "crudini";
version = "0.9.4";
format = "pyproject";
src = fetchFromGitHub {
owner = "pixelb";
repo = "crudini";
rev = version;
hash = "sha256-jbTOaCF/ZqRpM0scDBBAcV5bSYg/QhBPbM9R5cONZ2o=";
};
patches = [
(fetchpatch {
name = "add-missing-install-file.patch";
url = "https://github.com/pixelb/crudini/commit/d433e4d9c4106ae26985e3f4b2efa593bdd5c274.patch";
hash = "sha256-aDGzoG4i2tvYeL8m1WoqwNFNHe4xR1dGk+XDt3f3i5E=";
})
];
postPatch = ''
patchShebangs crudini.py crudini-help tests/test.sh
'';
env.SETUPTOOLS_SCM_PRETEND_VERSION = version;
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 = "A utility for manipulating ini files ";
homepage = "https://www.pixelbeat.org/programs/crudini/";
license = licenses.gpl2Only;
maintainers = with maintainers; [ peterhoeg ];
mainProgram = "crudini";
};
}