mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 22:50:49 +00:00
69c21be86e
Similar to f3c66bb31e
. Due to invalid
datatypes a lot of the tests broke.
The patch is based on an upstream PR[1], but had to be modified in order
to apply on v1.19.0.
See also https://hydra.nixos.org/build/90119741
Addresses #56826
[1] https://github.com/dbcli/mycli/pull/711
43 lines
823 B
Nix
43 lines
823 B
Nix
{ lib
|
|
, python3
|
|
, glibcLocales
|
|
}:
|
|
|
|
with python3.pkgs;
|
|
|
|
buildPythonApplication rec {
|
|
pname = "mycli";
|
|
version = "1.19.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0x5vzl4vvirqy03fnjwkamhzrqkknlajamwz1rmbnqh4bfmijh9m";
|
|
};
|
|
|
|
patches = [ ./fix-tests.patch ];
|
|
|
|
propagatedBuildInputs = [
|
|
pymysql configobj sqlparse prompt_toolkit pygments click pycrypto cli-helpers
|
|
];
|
|
|
|
checkInputs = [ pytest mock glibcLocales ];
|
|
|
|
checkPhase = ''
|
|
export HOME=.
|
|
export LC_ALL="en_US.UTF-8"
|
|
|
|
py.test
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|