evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / pgspecial / default.nix
blobe632972198900eb753933c894109c5e785cd37b4
2   lib,
3   buildPythonPackage,
4   click,
5   configobj,
6   fetchPypi,
7   psycopg,
8   pytestCheckHook,
9   pythonOlder,
10   setuptools,
11   sqlparse,
14 buildPythonPackage rec {
15   pname = "pgspecial";
16   version = "2.1.2";
17   pyproject = true;
19   disabled = pythonOlder "3.7";
21   src = fetchPypi {
22     inherit pname version;
23     hash = "sha256-8EGeGzt4+zpy/jtUb2eIpxIJFTLVmf51k7X27lWoj4c=";
24   };
26   build-system = [ setuptools ];
28   dependencies = [
29     click
30     sqlparse
31     psycopg
32   ];
34   nativeCheckInputs = [
35     configobj
36     pytestCheckHook
37   ];
39   disabledTests = [
40     # Test requires a Postgresql server
41     "test_slash_dp_pattern_schema"
42   ];
44   meta = with lib; {
45     description = "Meta-commands handler for Postgres Database";
46     homepage = "https://github.com/dbcli/pgspecial";
47     changelog = "https://github.com/dbcli/pgspecial/releases/tag/v${version}";
48     license = licenses.bsd3;
49     maintainers = [ ];
50   };