python3Packages.pecan: apply the patch for SQLAlchemy 1.4.x
This commit is contained in:
parent
33d42ad7cf
commit
a038f77518
1 changed files with 12 additions and 2 deletions
|
@ -1,5 +1,6 @@
|
||||||
{ lib
|
{ lib
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
|
, fetchpatch
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, isPy27
|
, isPy27
|
||||||
# Python deps
|
# Python deps
|
||||||
|
@ -28,6 +29,14 @@ buildPythonPackage rec {
|
||||||
sha256 = "4b2acd6802a04b59e306d0a6ccf37701d24376f4dc044bbbafba3afdf9d3389a";
|
sha256 = "4b2acd6802a04b59e306d0a6ccf37701d24376f4dc044bbbafba3afdf9d3389a";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
(fetchpatch {
|
||||||
|
name = "Support-SQLAlchemy-1.4x.patch";
|
||||||
|
url = "https://github.com/pecan/pecan/commit/a520bd544c0b02a02dbf692b8d6e2f7a503ee6d4.patch";
|
||||||
|
sha256 = "sha256-QCHRjwnpy8ndCvcuyE5Y65BybKYthJXDySUtmpJD8gY=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
logutils
|
logutils
|
||||||
Mako
|
Mako
|
||||||
|
@ -51,8 +60,9 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Pecan";
|
description = "WSGI object-dispatching web framework, designed to be lean and fast";
|
||||||
homepage = "http://www.pecanpy.org/";
|
homepage = "https://www.pecanpy.org/";
|
||||||
changelog = "https://pecan.readthedocs.io/en/latest/changes.html";
|
changelog = "https://pecan.readthedocs.io/en/latest/changes.html";
|
||||||
|
maintainers = with maintainers; [ applePrincess ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue