tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.josepy: backport test fix
K900
1 year ago
67cdc348
3bd454d3
+10
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
josepy
default.nix
+10
pkgs/development/python-modules/josepy/default.nix
···
3
3
buildPythonPackage,
4
4
cryptography,
5
5
fetchPypi,
6
6
+
fetchpatch,
6
7
poetry-core,
7
8
pyopenssl,
8
9
pytestCheckHook,
···
20
21
inherit pname version;
21
22
hash = "sha256-MIs7+c6CWtTUu6djcs8ZtdwcLOlqnSmPlkKXXmS9E90=";
22
23
};
24
24
+
25
25
+
patches = [
26
26
+
# don't fail tests on openssl deprecation warning, upstream is working on proper fix
27
27
+
# FIXME: remove for next update
28
28
+
(fetchpatch {
29
29
+
url = "https://github.com/certbot/josepy/commit/350410fc1d38c4ac8422816b6865ac8cd9c60fc7.diff";
30
30
+
hash = "sha256-QGbzonXb5BtTTWDeDqnZhbS6gHce99vIOm/H8QYeGXY=";
31
31
+
})
32
32
+
];
23
33
24
34
nativeBuildInputs = [ poetry-core ];
25
35