tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.rfc7464: disable
Martin Weinelt
11 months ago
84ef97d2
e05360c0
+4
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
rfc7464
default.nix
+4
pkgs/development/python-modules/rfc7464/default.nix
···
2
2
buildPythonPackage,
3
3
fetchPypi,
4
4
lib,
5
5
+
pythonAtLeast,
5
6
}:
6
7
7
8
buildPythonPackage rec {
8
9
pname = "rfc7464";
9
10
version = "17.7.0";
10
11
format = "setuptools";
12
12
+
13
13
+
# AttributeError: module 'configparser' has no attribute 'SafeConfigParser'. Did you mean: 'RawConfigParser'?
14
14
+
disabled = pythonAtLeast "3.12";
11
15
12
16
src = fetchPypi {
13
17
inherit pname version;