mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
Merge pull request #53585 from Scriptkiddi/litecli
litecli: init at 1.0.0
This commit is contained in:
commit
c0d3182f79
51
pkgs/development/tools/database/litecli/default.nix
Normal file
51
pkgs/development/tools/database/litecli/default.nix
Normal file
@ -0,0 +1,51 @@
|
||||
{ lib, python3Packages }:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "litecli";
|
||||
version = "1.0.0";
|
||||
|
||||
# Python 2 won't have prompt_toolkit 2.x.x
|
||||
# See: https://github.com/NixOS/nixpkgs/blob/f49e2ad3657dede09dc998a4a98fd5033fb52243/pkgs/top-level/python-packages.nix#L3408
|
||||
disabled = python3Packages.isPy27;
|
||||
|
||||
src = python3Packages.fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0s5a6r5q09144cc5169snwis5i2jrh3z2g4mw9wi2fsjxyhgpwq5";
|
||||
};
|
||||
|
||||
# fixes tests https://github.com/dbcli/litecli/pull/53
|
||||
postPatch = ''
|
||||
substituteInPlace litecli/main.py \
|
||||
--replace 'except FileNotFoundError:' 'except (FileNotFoundError, OSError):'
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
cli-helpers
|
||||
click
|
||||
configobj
|
||||
prompt_toolkit
|
||||
pygments
|
||||
sqlparse
|
||||
];
|
||||
|
||||
checkInputs = with python3Packages; [
|
||||
pytest
|
||||
mock
|
||||
];
|
||||
|
||||
preCheck = ''
|
||||
export XDG_CONFIG_HOME=$TMP
|
||||
# add missing file
|
||||
echo "litecli is awesome!" > tests/test.txt
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Command-line interface for SQLite";
|
||||
longDescription = ''
|
||||
A command-line client for SQLite databases that has auto-completion and syntax highlighting.
|
||||
'';
|
||||
homepage = https://litecli.com;
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ Scriptkiddi ];
|
||||
};
|
||||
}
|
@ -8825,6 +8825,8 @@ in
|
||||
|
||||
lit = callPackage ../development/tools/misc/lit { };
|
||||
|
||||
litecli = callPackage ../development/tools/database/litecli {};
|
||||
|
||||
lsof = callPackage ../development/tools/misc/lsof { };
|
||||
|
||||
ltrace = callPackage ../development/tools/misc/ltrace { };
|
||||
|
Loading…
Reference in New Issue
Block a user