tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python310Packages.repoze_who: skip failing test
figsoda
2 years ago
2ae406b5
4376e41a
+8
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
repoze_who
default.nix
+8
-1
pkgs/development/python-modules/repoze_who/default.nix
···
16
16
17
17
propagatedBuildInputs = [ zope_interface webob ];
18
18
19
19
+
# skip failing test
20
20
+
# OSError: [Errno 22] Invalid argument
21
21
+
preCheck = ''
22
22
+
rm repoze/who/plugins/tests/test_htpasswd.py
23
23
+
'';
24
24
+
19
25
meta = with lib; {
20
26
description = "WSGI Authentication Middleware / API";
21
27
homepage = "http://www.repoze.org";
28
28
+
changelog = "https://github.com/repoze/repoze.who/blob/${version}/CHANGES.rst";
22
29
license = licenses.bsd0;
30
30
+
maintainers = with maintainers; [ ];
23
31
};
24
24
-
25
32
}