lol
0
fork

Configure Feed

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

Merge pull request #127362 from applePrincess/fix-pecan-sqlalchemy

python3Packages.pecan: apply the patch for SQLAlchemy 1.4.x

authored by

Sandro and committed by
GitHub
78ca8a52 dbd9eec6

+12 -2
+12 -2
pkgs/development/python-modules/pecan/default.nix
··· 1 1 { lib 2 2 , fetchPypi 3 + , fetchpatch 3 4 , buildPythonPackage 4 5 , isPy27 5 6 # Python deps ··· 28 29 sha256 = "4b2acd6802a04b59e306d0a6ccf37701d24376f4dc044bbbafba3afdf9d3389a"; 29 30 }; 30 31 32 + patches = [ 33 + (fetchpatch { 34 + name = "Support-SQLAlchemy-1.4x.patch"; 35 + url = "https://github.com/pecan/pecan/commit/a520bd544c0b02a02dbf692b8d6e2f7a503ee6d4.patch"; 36 + sha256 = "sha256-QCHRjwnpy8ndCvcuyE5Y65BybKYthJXDySUtmpJD8gY="; 37 + }) 38 + ]; 39 + 31 40 propagatedBuildInputs = [ 32 41 logutils 33 42 Mako ··· 51 60 ]; 52 61 53 62 meta = with lib; { 54 - description = "Pecan"; 55 - homepage = "http://www.pecanpy.org/"; 63 + description = "WSGI object-dispatching web framework, designed to be lean and fast"; 64 + homepage = "https://www.pecanpy.org/"; 56 65 changelog = "https://pecan.readthedocs.io/en/latest/changes.html"; 66 + maintainers = with maintainers; [ applePrincess ]; 57 67 }; 58 68 }