Commit 4a78856a authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.rfc8785: init at 0.1.3

Module for RFC8785 (JSON Canonicalization Scheme)

https://github.com/trailofbits/rfc8785.py
parent b397df94
Loading
Loading
Loading
Loading
+40 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
, flit-core
, pytestCheckHook
, pythonOlder
}:

buildPythonPackage rec {
  pname = "rfc8785";
  version = "0.1.3";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "trailofbits";
    repo = "rfc8785.py";
    rev = "refs/tags/v${version}";
    hash = "sha256-hMH//DpxgNoNLZJ8XL8SikcTfj0w0FvlBMfnPCkqzZ4=";
  };

  build-system = [
    flit-core
  ];

  nativeCheckInputs = [
    pytestCheckHook
  ];

  pythonImportsCheck = [ "rfc8785" ];

  meta = with lib; {
    description = "Module for RFC8785 (JSON Canonicalization Scheme)";
    homepage = "https://github.com/trailofbits/rfc8785.py";
    changelog = "https://github.com/trailofbits/rfc8785.py/releases/tag/v${version}";
    license = licenses.asl20;
    maintainers = with maintainers; [ fab ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -13403,6 +13403,8 @@ self: super: with self; {
  rfc7464 = callPackage ../development/python-modules/rfc7464 { };
  rfc8785 = callPackage ../development/python-modules/rfc8785 { };
  rfcat = callPackage ../development/python-modules/rfcat { };
  rflink = callPackage ../development/python-modules/rflink { };