litecli: fix build
This commit is contained in:
parent
97cbfe1801
commit
baeb4eb1b1
@ -1,4 +1,4 @@
|
|||||||
{ lib, python3Packages }:
|
{ lib, python3Packages, fetchpatch }:
|
||||||
|
|
||||||
python3Packages.buildPythonApplication rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
pname = "litecli";
|
pname = "litecli";
|
||||||
@ -13,6 +13,14 @@ python3Packages.buildPythonApplication rec {
|
|||||||
sha256 = "FARWjtbS5zi/XQDyAVImUmArLj8xATz1jZ4jnXFdq1w=";
|
sha256 = "FARWjtbS5zi/XQDyAVImUmArLj8xATz1jZ4jnXFdq1w=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# Fix compatibility with sqlparse >= 0.4.0. Remove with the next release
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/dbcli/litecli/commit/37957e401d22f88800bbdec2c690e731f2cc13bd.patch";
|
||||||
|
sha256 = "1x82s2h1rzflyiahyd8pfya30rzs6yx6ij4a4s16f8iix5x35zv9";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = with python3Packages; [
|
propagatedBuildInputs = with python3Packages; [
|
||||||
cli-helpers
|
cli-helpers
|
||||||
click
|
click
|
||||||
|
Loading…
x
Reference in New Issue
Block a user