Files
nixpkgs/pkgs/development/python-modules/pypika/default.nix
Wolfgang Walther c283f32d29 treewide: remove unused with
Auto-fixed by nixf-diagnose.
2025-10-05 10:50:41 +02:00

34 lines
634 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
parameterized,
unittestCheckHook,
}:
buildPythonPackage rec {
pname = "pypika";
version = "0.49.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "kayak";
repo = "pypika";
rev = "v${version}";
hash = "sha256-Lawsc19sJ3U7rCOnYvDWhWqK/J+Hd3zKG6TrhDsTtVs=";
};
pythonImportsCheck = [ "pypika" ];
nativeCheckInputs = [
parameterized
unittestCheckHook
];
meta = with lib; {
description = "Python SQL query builder";
homepage = "https://github.com/kayak/pypika";
license = licenses.asl20;
maintainers = [ ];
};
}