From b0c7df9fbc3920fc7cc215c80f1b620a67c31aae Mon Sep 17 00:00:00 2001 From: Peter Hoeg Date: Tue, 14 Mar 2017 18:44:00 +0800 Subject: [PATCH] crudini: fix maintainer and run tests --- pkgs/tools/misc/crudini/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/misc/crudini/default.nix b/pkgs/tools/misc/crudini/default.nix index ead18f8c31f2..856138f046ae 100644 --- a/pkgs/tools/misc/crudini/default.nix +++ b/pkgs/tools/misc/crudini/default.nix @@ -13,10 +13,16 @@ python2Packages.buildPythonApplication rec { propagatedBuildInputs = with python2Packages; [ iniparse ]; + checkPhase = '' + patchShebangs . + pushd tests >/dev/null + ./test.sh + ''; + meta = with stdenv.lib; { description = "A utility for manipulating ini files "; homepage = http://www.pixelbeat.org/programs/crudini/; license = licenses.gpl2; - maintainers = with maintainers; [ bjornfor ]; + maintainers = with maintainers; [ peterhoeg ]; }; }