1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 06:01:15 +00:00

Merge pull request #126821 from fabaff/bump-litecli

litecli: 1.5.0 -> 1.6.0
This commit is contained in:
Sandro 2021-06-14 14:00:04 +02:00 committed by GitHub
commit 35076cc90c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,16 +1,15 @@
{ lib, python3Packages }:
{ lib
, python3Packages
}:
python3Packages.buildPythonApplication rec {
pname = "litecli";
version = "1.5.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;
version = "1.6.0";
disabled = python3Packages.pythonOlder "3.4";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "b09f0804d26b018360b240778612390810e8e00ea0f79d5412fd0d4775c0e3cd";
sha256 = "sha256-TSdOFHW007syOEg4gwvEqDiJkrfLgRmqjP/H/6oBZ/k=";
};
propagatedBuildInputs = with python3Packages; [
@ -27,6 +26,8 @@ python3Packages.buildPythonApplication rec {
mock
];
pythonImportsCheck = [ "litecli" ];
meta = with lib; {
description = "Command-line interface for SQLite";
longDescription = ''