tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.wtf-peewee: patch for wtforms 3.0
arcnmx
4 years ago
53a02188
08afe3eb
+9
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
wtf-peewee
default.nix
+9
pkgs/development/python-modules/wtf-peewee/default.nix
reviewed
···
1
1
{ lib
2
2
, buildPythonPackage
3
3
, fetchPypi
4
4
+
, fetchpatch
4
5
, peewee
5
6
, wtforms
6
7
, python
···
15
14
inherit pname version;
16
15
sha256 = "faa953fe3f705d4f2b48f3c1a81c5c5a6a38f9ed1378c9a830e6efc1b0fccb15";
17
16
};
17
17
+
18
18
+
patches = [
19
19
+
(fetchpatch {
20
20
+
name = "fix-wtforms3.patch";
21
21
+
url = "https://github.com/coleifer/wtf-peewee/commit/b1764f4474c73a9a2b34ae6b7db61274f5252a7f.patch";
22
22
+
sha256 = "0maz3fm9bi8p80nk9sdb34xq55xq8ihm51y7k0m8ck9aaypvwbig";
23
23
+
})
24
24
+
];
18
25
19
26
propagatedBuildInputs = [
20
27
peewee