blob: ec3cad6e874765fa8a88edd6ee07b4ee0f85d9b4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
{ lib
, fetchFromGitHub
, python3Packages
, help2man
, installShellFiles
}:
python3Packages.buildPythonApplication rec {
pname = "crudini";
version = "0.9.5";
format = "pyproject";
src = fetchFromGitHub {
owner = "pixelb";
repo = "crudini";
rev = version;
hash = "sha256-BU4u7uBsNyDOwWUjOIlBWcf1AeUXXZ+johAe+bjws1U=";
};
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";
};
}
|