1{
2 buildPythonPackage,
3 fetchPypi,
4 lib,
5}:
6
7buildPythonPackage rec {
8 pname = "rfc7464";
9 version = "17.7.0";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "1hcn6h38qplfcmq392cs58r01k16k202bqyap4br02376pr4ik7a";
15 extension = "zip";
16 };
17
18 meta = with lib; {
19 homepage = "https://github.com/moshez/rfc7464";
20 description = "RFC 7464 is a proposed standard for streaming JSON documents.";
21 license = [ licenses.mit ];
22 maintainers = with maintainers; [ shlevy ];
23 };
24}