forked from mirrors/nixpkgs
pythonPackages.sqlparse: fix tests
This commit is contained in:
parent
59b5a2a8c9
commit
d78a2b1ce9
|
@ -22179,6 +22179,14 @@ in modules // {
|
|||
sha256 = "1s2fvaxgh9kqzrd6iwy5h7i61ckn05plx9np13zby93z3hdbx5nq";
|
||||
};
|
||||
|
||||
buildInputs = with self; [ pytest ];
|
||||
checkPhase = ''
|
||||
py.test
|
||||
'';
|
||||
|
||||
# Package supports 3.x, but tests are clearly 2.x only.
|
||||
doCheck = !isPy3k;
|
||||
|
||||
meta = {
|
||||
description = "Non-validating SQL parser for Python";
|
||||
longDescription = ''
|
||||
|
|
Loading…
Reference in a new issue