lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python311Packages.cepa: pull in patch to fix python 3.11 build

authored by

Theodore Ni and committed by
Martin Weinelt
f23415e0 d77e1384

+15 -1
+15 -1
pkgs/development/python-modules/cepa/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, python, mock }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchpatch 4 + , fetchPypi 5 + , python 6 + , mock 7 + }: 2 8 3 9 buildPythonPackage rec { 4 10 pname = "cepa"; ··· 8 14 inherit pname version; 9 15 hash = "sha256-P7xwGsP8ic1/abxYptDXNbAU+kC2Hiwu/Tge0g21ipY="; 10 16 }; 17 + 18 + patches = [ 19 + (fetchpatch { 20 + name = "python-3.11-compatibility.patch"; 21 + url = "https://github.com/onionshare/cepa/commit/0bf9aee7151e65594c532826bb04636e1d80fb6f.patch"; 22 + hash = "sha256-roSt9N5OvnOOxKZUee86zGXt0AsZCcbBdV2cLz1MB2k="; 23 + }) 24 + ]; 11 25 12 26 postPatch = '' 13 27 rm test/unit/installation.py