mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-17 14:18:32 +00:00
litecli: 1.11.0 -> 1.12.3
This commit is contained in:
parent
87e3803821
commit
d2e1e70038
@ -1,24 +1,36 @@
|
||||
{ lib
|
||||
, python3Packages
|
||||
, fetchPypi
|
||||
{
|
||||
lib,
|
||||
python3Packages,
|
||||
fetchFromGitHub,
|
||||
}:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "litecli";
|
||||
version = "1.11.0";
|
||||
version = "1.12.3";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-YW3mjYfSuxi/XmaetrWmjVuTfqgaitQ5wfUaJdHIH1Y=";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "dbcli";
|
||||
repo = "litecli";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-TPwzXfb4n6wTe6raQ5IowKdhGkKrf2pmSS2+Q03NKYk=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
cli-helpers
|
||||
click
|
||||
configobj
|
||||
prompt-toolkit
|
||||
pygments
|
||||
sqlparse
|
||||
dependencies =
|
||||
with python3Packages;
|
||||
[
|
||||
cli-helpers
|
||||
click
|
||||
configobj
|
||||
prompt-toolkit
|
||||
pygments
|
||||
sqlparse
|
||||
]
|
||||
++ cli-helpers.optional-dependencies.styles;
|
||||
|
||||
build-system = with python3Packages; [
|
||||
setuptools
|
||||
];
|
||||
|
||||
nativeCheckInputs = with python3Packages; [
|
||||
|
Loading…
Reference in New Issue
Block a user