68 lines
1.4 KiB
Nix
68 lines
1.4 KiB
Nix
{ lib
|
|
, python3
|
|
, fetchPypi
|
|
, glibcLocales
|
|
}:
|
|
|
|
with python3.pkgs;
|
|
|
|
buildPythonApplication rec {
|
|
pname = "mycli";
|
|
version = "1.26.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-jAMDXJtFJtv6CwhZZU4pdKDndZKp6bJ/QPWo2q6DvrE=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
cli-helpers
|
|
click
|
|
configobj
|
|
importlib-resources
|
|
paramiko
|
|
prompt-toolkit
|
|
pyaes
|
|
pycrypto
|
|
pygments
|
|
pymysql
|
|
pyperclip
|
|
sqlglot
|
|
sqlparse
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook glibcLocales ];
|
|
|
|
preCheck = ''
|
|
export HOME=.
|
|
export LC_ALL="en_US.UTF-8"
|
|
'';
|
|
|
|
disabledTestPaths = [
|
|
"mycli/packages/paramiko_stub/__init__.py"
|
|
];
|
|
|
|
disabledTests = [
|
|
# Note: test_auto_escaped_col_names is currently failing due to a bug upstream.
|
|
# TODO: re-enable this test once there is a fix upstream. See
|
|
# https://github.com/dbcli/mycli/issues/1103 for details.
|
|
"test_auto_escaped_col_names"
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "cryptography == 36.0.2" "cryptography"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
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 = licenses.bsd3;
|
|
maintainers = with maintainers; [ jojosch ];
|
|
};
|
|
}
|