nixpkgs/pkgs/tools/admin/mycli/default.nix

48 lines
1,001 B
Nix
Raw Normal View History

{ lib
2018-08-07 06:40:56 +00:00
, python3
, glibcLocales
}:
2018-08-07 06:40:56 +00:00
with python3.pkgs;
buildPythonApplication rec {
pname = "mycli";
2020-07-01 10:30:23 +00:00
version = "1.21.1";
src = fetchPypi {
inherit pname version;
2020-07-01 10:30:23 +00:00
sha256 = "1q9p0yik9cpvpxjs048anvhicfcna84mpl7axv9bwgr48w40lqwg";
};
propagatedBuildInputs = [
paramiko pymysql configobj sqlparse prompt_toolkit pygments click pycrypto cli-helpers
];
2018-08-07 06:40:56 +00:00
checkInputs = [ pytest mock glibcLocales ];
checkPhase = ''
export HOME=.
export LC_ALL="en_US.UTF-8"
2018-08-07 06:40:56 +00:00
py.test
'';
2020-07-01 10:30:23 +00:00
# TODO: remove with next release
postPatch = ''
substituteInPlace setup.py \
--replace "prompt_toolkit>=2.0.6,<3.0.0" "prompt_toolkit"
'';
meta = {
inherit version;
description = "Command-line interface for MySQL";
longDescription = ''
Rich command-line interface for MySQL with auto-completion and
syntax highlighting.
'';
homepage = "http://mycli.net";
license = lib.licenses.bsd3;
2019-10-09 07:00:03 +00:00
maintainers = [ lib.maintainers.jojosch ];
};
}