nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python3Packages.wtf-peewee: patch for wtforms 3.0

arcnmx 53a02188 08afe3eb

+9
+9
pkgs/development/python-modules/wtf-peewee/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 + , fetchpatch 4 5 , peewee 5 6 , wtforms 6 7 , python ··· 15 14 inherit pname version; 16 15 sha256 = "faa953fe3f705d4f2b48f3c1a81c5c5a6a38f9ed1378c9a830e6efc1b0fccb15"; 17 16 }; 17 + 18 + patches = [ 19 + (fetchpatch { 20 + name = "fix-wtforms3.patch"; 21 + url = "https://github.com/coleifer/wtf-peewee/commit/b1764f4474c73a9a2b34ae6b7db61274f5252a7f.patch"; 22 + sha256 = "0maz3fm9bi8p80nk9sdb34xq55xq8ihm51y7k0m8ck9aaypvwbig"; 23 + }) 24 + ]; 18 25 19 26 propagatedBuildInputs = [ 20 27 peewee