Skip to content

Commit cc2c23e

Browse files
Merge pull request #184533 from SuperSandro2000/pgcli
2 parents 10ec6b8 + d3057ea commit cc2c23e

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

pkgs/development/python-modules/pgcli/default.nix

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{ lib, stdenv
22
, buildPythonPackage
33
, fetchPypi
4-
, isPy3k
54
, cli-helpers
65
, click
76
, configobj
@@ -29,6 +28,11 @@ buildPythonPackage rec {
2928
sha256 = "sha256-8DkwGH4n1g32WMqKBPtgHsXXR2xzXysVQsat7Fysj+I=";
3029
};
3130

31+
postPatch = ''
32+
substituteInPlace setup.py \
33+
--replace "pgspecial>=1.13.1,<2.0.0" "pgspecial>=1.13.1"
34+
'';
35+
3236
propagatedBuildInputs = [
3337
cli-helpers
3438
click
@@ -57,6 +61,6 @@ buildPythonPackage rec {
5761
homepage = "https://pgcli.com";
5862
changelog = "https://github.com/dbcli/pgcli/raw/v${version}/changelog.rst";
5963
license = licenses.bsd3;
60-
maintainers = with maintainers; [ dywedir ];
64+
maintainers = with maintainers; [ dywedir SuperSandro2000 ];
6165
};
6266
}

0 commit comments

Comments
 (0)