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