My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/sqlparse/default.nix

36 lines
746 B

{ lib
, buildPythonPackage
, fetchPypi
, installShellFiles
, pytestCheckHook
, isPy3k
}:
buildPythonPackage rec {
pname = "sqlparse";
version = "0.4.2";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "0c00730c74263a94e5a9919ade150dfc3b19c574389985446148402998287dae";
};
nativeBuildInputs = [ installShellFiles ];
checkInputs = [ pytestCheckHook ];
postInstall = ''
installManPage docs/sqlformat.1
'';
meta = with 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;
};
}