2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchPypi,
|
|
|
|
lib,
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "rfc7464";
|
|
|
|
version = "17.7.0";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "1hcn6h38qplfcmq392cs58r01k16k202bqyap4br02376pr4ik7a";
|
|
|
|
extension = "zip";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/moshez/rfc7464";
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "RFC 7464 is a proposed standard for streaming JSON documents";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = [ licenses.mit ];
|
|
|
|
maintainers = with maintainers; [ shlevy ];
|
|
|
|
};
|
|
|
|
}
|