pythonPackages.pgsanity: don't mark broken

This commit is contained in:
worldofpeace 2019-10-18 16:01:21 -04:00
parent a7aa69c8bf
commit 625cad31bc

View File

@ -25,13 +25,12 @@ buildPythonPackage rec {
description = "Checks the syntax of Postgresql SQL files"; description = "Checks the syntax of Postgresql SQL files";
longDescription = '' longDescription = ''
PgSanity checks the syntax of Postgresql SQL files by PgSanity checks the syntax of Postgresql SQL files by
taking a file that has a list of bare SQL in it, taking a file that has a list of bare SQL in it,
making that file look like a C file with embedded SQL, making that file look like a C file with embedded SQL,
run it through ecpg and run it through ecpg and
let ecpg report on the syntax errors of the SQL. let ecpg report on the syntax errors of the SQL.
''; '';
license = stdenv.lib.licenses.mit; license = stdenv.lib.licenses.mit;
maintainers = with maintainers; [ nalbyuites ]; maintainers = with maintainers; [ nalbyuites ];
broken = true;
}; };
} }