Merge pull request #26044 from aneeshusa/update-pgcli-to-1.5.1
Update pgcli to 1.5.1
This commit is contained in:
commit
4f6dde2494
39
pkgs/development/tools/database/pgcli/default.nix
Normal file
39
pkgs/development/tools/database/pgcli/default.nix
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
{ lib, pythonPackages, fetchFromGitHub }:
|
||||||
|
|
||||||
|
pythonPackages.buildPythonApplication rec {
|
||||||
|
name = "pgcli-${version}";
|
||||||
|
version = "1.5.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
sha256 = "1wp8pzi9hwz16fpcr0mq3ffydwdscfg5whhzc91757dw995sgl0s";
|
||||||
|
rev = "v${version}";
|
||||||
|
repo = "pgcli";
|
||||||
|
owner = "dbcli";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = with pythonPackages; [ pytest mock ];
|
||||||
|
checkPhase = ''
|
||||||
|
py.test tests -k 'not test_missing_rc_dir and not test_quoted_db_uri and not test_port_db_uri'
|
||||||
|
'';
|
||||||
|
|
||||||
|
propagatedBuildInputs = with pythonPackages; [
|
||||||
|
click configobj humanize prompt_toolkit psycopg2
|
||||||
|
pygments sqlparse pgspecial setproctitle
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace setup.py --replace "==" ">="
|
||||||
|
rm tests/test_rowlimit.py
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Command-line interface for PostgreSQL";
|
||||||
|
longDescription = ''
|
||||||
|
Rich command-line interface for PostgreSQL with auto-completion and
|
||||||
|
syntax highlighting.
|
||||||
|
'';
|
||||||
|
homepage = https://pgcli.com;
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [ nckx ];
|
||||||
|
};
|
||||||
|
}
|
@ -6951,6 +6951,8 @@ with pkgs;
|
|||||||
|
|
||||||
peg = callPackage ../development/tools/parsing/peg { };
|
peg = callPackage ../development/tools/parsing/peg { };
|
||||||
|
|
||||||
|
pgcli = callPackage ../development/tools/database/pgcli {};
|
||||||
|
|
||||||
phantomjs = callPackage ../development/tools/phantomjs { };
|
phantomjs = callPackage ../development/tools/phantomjs { };
|
||||||
|
|
||||||
phantomjs2 = callPackage ../development/tools/phantomjs2 { };
|
phantomjs2 = callPackage ../development/tools/phantomjs2 { };
|
||||||
|
@ -17982,51 +17982,14 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
pgcli = buildPythonPackage rec {
|
|
||||||
name = "pgcli-${version}";
|
|
||||||
version = "1.3.1";
|
|
||||||
|
|
||||||
src = pkgs.fetchFromGitHub {
|
|
||||||
sha256 = "18i5pwli36d5d0xh1d7dc80iq85w7vcalphg8hipjclhg2h72bp0";
|
|
||||||
rev = "v${version}";
|
|
||||||
repo = "pgcli";
|
|
||||||
owner = "dbcli";
|
|
||||||
};
|
|
||||||
|
|
||||||
buildInputs = with self; [ pytest mock ];
|
|
||||||
checkPhase = ''
|
|
||||||
py.test tests -k 'not test_missing_rc_dir and not test_quoted_db_uri and not test_port_db_uri'
|
|
||||||
'';
|
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [
|
|
||||||
click configobj humanize prompt_toolkit psycopg2
|
|
||||||
pygments sqlparse pgspecial setproctitle
|
|
||||||
];
|
|
||||||
|
|
||||||
postPatch = ''
|
|
||||||
substituteInPlace setup.py --replace "==" ">="
|
|
||||||
rm tests/test_rowlimit.py
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Command-line interface for PostgreSQL";
|
|
||||||
longDescription = ''
|
|
||||||
Rich command-line interface for PostgreSQL with auto-completion and
|
|
||||||
syntax highlighting.
|
|
||||||
'';
|
|
||||||
homepage = http://pgcli.com;
|
|
||||||
license = licenses.bsd3;
|
|
||||||
maintainers = with maintainers; [ nckx ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
pgspecial = buildPythonPackage rec {
|
pgspecial = buildPythonPackage rec {
|
||||||
name = "pgspecial-${version}";
|
pname = "pgspecial";
|
||||||
version = "1.6.0";
|
version = "1.7.0";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
src = fetchPypi {
|
||||||
sha256 = "09ilalpgcl86f79648qsjm87dqi97bc70y51nrf0b3i1py3mhs2m";
|
inherit pname version;
|
||||||
url = "mirror://pypi/p/pgspecial/${name}.tar.gz";
|
sha256 = "0jnv8mr75pjhj2azb2ljhhkd7s1b0b59f7xps322kqbpmwf26zi9";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = with self; [ pytest psycopg2 ];
|
buildInputs = with self; [ pytest psycopg2 ];
|
||||||
|
Loading…
Reference in New Issue
Block a user