Files
nixpkgs/pkgs/development/python-modules/harlequin-postgres/default.nix
T
Martin Weinelt d9649f57ca python3Packages.harlequin-postgres: 1.2.2 -> 1.3.0
This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:15 +01:00

43 lines
805 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
hatchling,
psycopg,
}:
buildPythonPackage rec {
pname = "harlequin-postgres";
version = "1.3.0";
pyproject = true;
src = fetchPypi {
pname = "harlequin_postgres";
inherit version;
hash = "sha256-01MllGk8dFeWtbpENCGGYs4/nlq7aLLkFZqCXGLrN4s=";
};
build-system = [
hatchling
];
dependencies = [
psycopg
psycopg.pool
];
# To prevent circular dependency
# as harlequin-postgres requires harlequin which requires harlequin-postgres
doCheck = false;
pythonRemoveDeps = [
"harlequin"
];
meta = {
description = "Harlequin adapter for Postgres";
homepage = "https://pypi.org/project/harlequin-postgres/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ pcboy ];
};
}