Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / rfc7464 / default.nix
blob9e5a5d3689da6ec078f85356a6635768b4ecd2de
1 { buildPythonPackage, fetchPypi, lib }:
3 buildPythonPackage rec {
4   pname = "rfc7464";
5   version = "17.7.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "1hcn6h38qplfcmq392cs58r01k16k202bqyap4br02376pr4ik7a";
10     extension = "zip";
11   };
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   };