0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

pythonPackages.sqlparse: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov 2018-10-27 17:45:54 -04:00
parent 0f2194508c
commit d921831bec
No known key found for this signature in database
GPG key ID: 9ED59B0AB1EAF573
2 changed files with 35 additions and 26 deletions

View file

@ -0,0 +1,34 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, pytest
, isPy3k
}:
buildPythonPackage rec {
pname = "sqlparse";
version = "0.2.2";
src = fetchPypi {
inherit pname version;
sha256 = "08dszglfhf1c4rwqinkbp4x55v0b90rgm1fxc1l4dy965imjjinl";
};
buildInputs = [ pytest ];
checkPhase = ''
py.test
'';
# Package supports 3.x, but tests are clearly 2.x only.
doCheck = !isPy3k;
meta = with stdenv.lib; {
description = "Non-validating SQL parser for Python";
longDescription = ''
Provides support for parsing, splitting and formatting SQL statements.
'';
homepage = https://github.com/andialbrecht/sqlparse;
license = licenses.bsd3;
};
}