Merge pull request #184533 from SuperSandro2000/pgcli

This commit is contained in:
Sandro 2022-08-04 13:28:54 +02:00 committed by GitHub
commit cc2c23e67e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,6 @@
{ lib, stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
, cli-helpers
, click
, configobj
@ -29,6 +28,11 @@ buildPythonPackage rec {
sha256 = "sha256-8DkwGH4n1g32WMqKBPtgHsXXR2xzXysVQsat7Fysj+I=";
};
postPatch = ''
substituteInPlace setup.py \
--replace "pgspecial>=1.13.1,<2.0.0" "pgspecial>=1.13.1"
'';
propagatedBuildInputs = [
cli-helpers
click
@ -57,6 +61,6 @@ buildPythonPackage rec {
homepage = "https://pgcli.com";
changelog = "https://github.com/dbcli/pgcli/raw/v${version}/changelog.rst";
license = licenses.bsd3;
maintainers = with maintainers; [ dywedir ];
maintainers = with maintainers; [ dywedir SuperSandro2000 ];
};
}