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

litecli: 1.5.0 -> 1.6.0

This commit is contained in:
Fabian Affolter 2021-06-14 12:47:46 +02:00
parent d51b663e07
commit a52e3408fa

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 = ''