nixpkgs/pkgs/tools/misc/crudini/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

63 lines
1.2 KiB
Nix
Raw Normal View History

2023-08-29 18:21:22 +00:00
{ lib
, fetchFromGitHub
, fetchpatch
, python3Packages
, help2man
, installShellFiles
}:
2017-03-14 08:45:05 +00:00
2020-10-02 02:15:22 +00:00
python3Packages.buildPythonApplication rec {
2019-08-31 11:41:23 +00:00
pname = "crudini";
2023-10-04 20:51:21 +00:00
version = "0.9.5";
2023-08-29 18:21:22 +00:00
format = "pyproject";
2017-03-14 08:45:05 +00:00
src = fetchFromGitHub {
2020-10-02 02:15:22 +00:00
owner = "pixelb";
repo = "crudini";
rev = version;
2023-10-04 20:51:21 +00:00
hash = "sha256-BU4u7uBsNyDOwWUjOIlBWcf1AeUXXZ+johAe+bjws1U=";
2017-03-14 08:45:05 +00:00
};
2019-09-26 13:24:42 +00:00
postPatch = ''
2023-08-29 18:21:22 +00:00
patchShebangs crudini.py crudini-help tests/test.sh
'';
2023-08-29 18:21:22 +00:00
env.SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeBuildInputs = [
help2man
installShellFiles
python3Packages.setuptools
python3Packages.setuptools-scm
python3Packages.wheel
];
propagatedBuildInputs = with python3Packages; [ iniparse ];
postInstall = ''
2019-09-26 13:24:42 +00:00
# this just creates the man page
make all
2023-08-29 18:21:22 +00:00
install -Dm444 -t $out/share/doc/${pname} README.md EXAMPLES
2019-09-26 13:24:42 +00:00
installManPage *.1
'';
checkPhase = ''
2019-09-26 13:24:42 +00:00
runHook preCheck
2017-03-14 10:44:00 +00:00
pushd tests >/dev/null
2023-08-29 18:21:22 +00:00
./test.sh
2019-09-26 13:24:42 +00:00
popd >/dev/null
runHook postCheck
2017-03-14 10:44:00 +00:00
'';
meta = with lib; {
2017-03-14 08:45:05 +00:00
description = "A utility for manipulating ini files ";
2019-09-26 13:24:42 +00:00
homepage = "https://www.pixelbeat.org/programs/crudini/";
2020-10-02 02:15:22 +00:00
license = licenses.gpl2Only;
2017-03-14 10:44:00 +00:00
maintainers = with maintainers; [ peterhoeg ];
2023-08-29 18:21:22 +00:00
mainProgram = "crudini";
2017-03-14 08:45:05 +00:00
};
}