python3Packages.pypika: init at 0.48.9

This commit is contained in:
David Arnold 2023-07-09 19:37:49 -05:00
parent 06c84f5b48
commit f2699a0ae5
No known key found for this signature in database
GPG Key ID: 0318D822BAC965CC
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,33 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, parameterized
, unittestCheckHook
}:
buildPythonPackage rec {
pname = "pypika";
version = "0.48.9";
format = "setuptools";
src = fetchFromGitHub {
owner = "kayak";
repo = "pypika";
rev = "v${version}";
hash = "sha256-9HKT1xRu23F5ptiKhIgIR8srLIcpDzpowBNuYOhqMU0=";
};
pythonImportsCheck = ["pypika"];
nativeCheckInputs = [
parameterized
unittestCheckHook
];
meta = with lib; {
description = "A python SQL query builder";
homepage = "https://github.com/kayak/pypika";
license = licenses.asl20;
maintainers = with maintainers; [ blaggacao ];
};
}

View File

@ -9280,6 +9280,8 @@ self: super: with self; {
pyphotonfile = callPackage ../development/python-modules/pyphotonfile { };
pypika = callPackage ../development/python-modules/pypika { };
pypillowfight = callPackage ../development/python-modules/pypillowfight { };
pypinyin = callPackage ../development/python-modules/pypinyin { };