nixpkgs/pkgs/development/python-modules/pgspecial/default.nix
Martin Weinelt 2fa6935e01 python3Packages.pgspecial: add missing check input
Reformat, convert to pytestCheckHook, fixes the build.
2021-05-07 09:59:05 -07:00

37 lines
615 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, psycopg2
, click
, configobj
, sqlparse
}:
buildPythonPackage rec {
pname = "pgspecial";
version = "1.12.1";
src = fetchPypi {
inherit pname version;
sha256 = "b68feb0005f57861573d3fbb82c5c777950decfbb2d1624af57aec825db02c02";
};
propagatedBuildInputs = [
click
sqlparse
psycopg2
];
checkInputs = [
configobj
pytestCheckHook
];
meta = with lib; {
description = "Meta-commands handler for Postgres Database";
homepage = "https://pypi.python.org/pypi/pgspecial";
license = licenses.bsd3;
};
}