1{
2 buildPythonPackage,
3 fetchPypi,
4 lib,
5 pythonAtLeast,
6}:
7
8buildPythonPackage rec {
9 pname = "rfc7464";
10 version = "17.7.0";
11 format = "setuptools";
12
13 # AttributeError: module 'configparser' has no attribute 'SafeConfigParser'. Did you mean: 'RawConfigParser'?
14 disabled = pythonAtLeast "3.12";
15
16 src = fetchPypi {
17 inherit pname version;
18 sha256 = "1hcn6h38qplfcmq392cs58r01k16k202bqyap4br02376pr4ik7a";
19 extension = "zip";
20 };
21
22 meta = with lib; {
23 homepage = "https://github.com/moshez/rfc7464";
24 description = "RFC 7464 is a proposed standard for streaming JSON documents";
25 license = [ licenses.mit ];
26 maintainers = with maintainers; [ shlevy ];
27 };
28}