pythonPackages.pgsanity: init at 0.2.9
This commit is contained in:
parent
7b207060f1
commit
06339255ca
@ -3053,6 +3053,11 @@
|
|||||||
github = "nadrieril";
|
github = "nadrieril";
|
||||||
name = "Nadrieril Feneanar";
|
name = "Nadrieril Feneanar";
|
||||||
};
|
};
|
||||||
|
nalbyuites = {
|
||||||
|
email = "ashijit007@gmail.com";
|
||||||
|
github = "nalbyuites";
|
||||||
|
name = "Ashijit Pramanik";
|
||||||
|
};
|
||||||
namore = {
|
namore = {
|
||||||
email = "namor@hemio.de";
|
email = "namor@hemio.de";
|
||||||
github = "namore";
|
github = "namore";
|
||||||
|
35
pkgs/development/python-modules/pgsanity/default.nix
Normal file
35
pkgs/development/python-modules/pgsanity/default.nix
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
{ stdenv
|
||||||
|
, python
|
||||||
|
, fetchPypi
|
||||||
|
, buildPythonPackage
|
||||||
|
, postgresql }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pgsanity";
|
||||||
|
version = "0.2.9";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "de0bbd6fe4f98bf5139cb5f466eac2e2abaf5a7b050b9e4867b87bf360873173";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
${python.interpreter} -m unittest discover -s test
|
||||||
|
'';
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ postgresql ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "http://github.com/markdrago/pgsanity";
|
||||||
|
description = "Checks the syntax of Postgresql SQL files";
|
||||||
|
longDescription = ''
|
||||||
|
PgSanity checks the syntax of Postgresql SQL files by
|
||||||
|
taking a file that has a list of bare SQL in it,
|
||||||
|
making that file look like a C file with embedded SQL,
|
||||||
|
run it through ecpg and
|
||||||
|
let ecpg report on the syntax errors of the SQL.
|
||||||
|
'';
|
||||||
|
license = stdenv.lib.licenses.mit;
|
||||||
|
maintainers = with maintainers; [ nalbyuites ];
|
||||||
|
};
|
||||||
|
}
|
@ -3388,6 +3388,8 @@ in {
|
|||||||
|
|
||||||
pg8000 = callPackage ../development/python-modules/pg8000 { };
|
pg8000 = callPackage ../development/python-modules/pg8000 { };
|
||||||
|
|
||||||
|
pgsanity = callPackage ../development/python-modules/pgsanity { };
|
||||||
|
|
||||||
pgspecial = callPackage ../development/python-modules/pgspecial { };
|
pgspecial = callPackage ../development/python-modules/pgspecial { };
|
||||||
|
|
||||||
pickleshare = callPackage ../development/python-modules/pickleshare { };
|
pickleshare = callPackage ../development/python-modules/pickleshare { };
|
||||||
|
Loading…
Reference in New Issue
Block a user