Unverified Commit 93359ea0 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #216715 from fabaff/canonicaljson-bump

python310Packages.canonicaljson: 1.6.4 -> 1.6.5
parents 1393d226 ef6fde65
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -10,14 +10,14 @@

buildPythonPackage rec {
  pname = "canonicaljson";
  version = "1.6.4";
  version = "1.6.5";
  format = "pyproject";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-bAmyEZUR8w6xEmz82XOhCCTiDxz9JQOc3j0SGN2cjY8=";
    hash = "sha256-aN/BV7AR4H2Uv3S11MzAGVhYTtlC2d/V/dcGYJ6BzUs=";
  };

  nativeBuildInputs = [
@@ -49,6 +49,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Encodes objects and arrays as RFC 7159 JSON";
    homepage = "https://github.com/matrix-org/python-canonicaljson";
    changelog = "https://github.com/matrix-org/python-canonicaljson/blob/v${version}/CHANGES.md";
    license = licenses.asl20;
    maintainers = with maintainers; [ fab ];
  };