mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
python3Packages.sqlite-utils: fix build
This commit is contained in:
parent
71088b0b10
commit
3180134016
@ -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"' ""
|
||||
|
Loading…
Reference in New Issue
Block a user