python3Packages.sqlite-utils: fix build

This commit is contained in:
Dmitry Kalinkin 2021-12-23 00:57:12 -05:00
parent 71088b0b10
commit 3180134016
No known key found for this signature in database
GPG Key ID: 5157B3EC8B2CA333

View File

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, fetchpatch
, pythonOlder
, click
, click-default-group
@ -21,6 +22,15 @@ buildPythonPackage rec {
sha256 = "509099fce5f25faada6e76b6fb90e8ef5ba0f1715177933a816718be0c8e7244";
};
patches = [
# https://github.com/simonw/sqlite-utils/pull/347
(fetchpatch {
name = "sqlite-utils-better-test_rebuild_fts.patch";
url = "https://github.com/simonw/sqlite-utils/pull/347/commits/1a7ef2fe2064ace01d5535fb771f941296fb642a.diff";
sha256 = "sha256-WKCQGMqr8WYjG7cmAH5pYBhgikowbt3r6hObwtMDDUY=";
})
];
postPatch = ''
substituteInPlace setup.py \
--replace '"pytest-runner"' ""