pgtap: init at version 0.97.0

This commit is contained in:
WilliButz 2017-09-29 16:20:15 +02:00
parent d09604155b
commit 2ebc40f95f
No known key found for this signature in database
GPG key ID: 92582A10F1179CB2
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ stdenv, fetchFromGitHub, postgresql, perl, perlPackages, which }:
stdenv.mkDerivation rec {
name = "pgtap-${version}";
version = "0.97.0";
src = fetchFromGitHub {
owner = "theory";
repo = "pgtap";
rev = "v${version}";
sha256 = "1vzc8pxzi0rbywmrvx7i5awngsvzcz75i4jl9bk2vqr223chax6f";
};
nativeBuildInputs = [ postgresql perl perlPackages.TAPParserSourceHandlerpgTAP which ];
installPhase = ''
install -D {sql/pgtap--${version}.sql,pgtap.control} -t $out/share/extension
'';
meta = with stdenv.lib; {
description = "pgTAP is a unit testing framework for PostgreSQL";
longDescription = ''
pgTAP is a unit testing framework for PostgreSQL written in PL/pgSQL and PL/SQL.
It includes a comprehensive collection of TAP-emitting assertion functions,
as well as the ability to integrate with other TAP-emitting test frameworks.
It can also be used in the xUnit testing style.
'';
maintainers = with maintainers; [ willibutz ];
homepage = http://pgtap.org;
inherit (postgresql.meta) platforms;
};
}

View file

@ -2475,6 +2475,8 @@ with pkgs;
pgjwt = callPackage ../servers/sql/postgresql/pgjwt {};
pgtap = callPackage ../servers/sql/postgresql/pgtap {};
pigz = callPackage ../tools/compression/pigz { };
pixz = callPackage ../tools/compression/pixz { };