Unverified Commit 49b8bfe7 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.py-ocsf-models: 0.8.0 -> 0.8.1 (#491999)

parents 0b721ad3 ab2b7731
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -9,16 +9,16 @@
  pytestCheckHook,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "py-ocsf-models";
  version = "0.8.0";
  version = "0.8.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "prowler-cloud";
    repo = "py-ocsf-models";
    tag = version;
    hash = "sha256-8HtX0kbd+5oYtzRpH3JtdyV+K+n+FWOQQ5CpJ+pejEo=";
    tag = finalAttrs.version;
    hash = "sha256-Wtls4Ei1160hxvZjdyH0rJCQWEN/CwpxfllwgGTzMog=";
  };

  pythonRelaxDeps = true;
@@ -41,8 +41,8 @@ buildPythonPackage rec {
  meta = {
    description = "OCSF models in Python using Pydantic";
    homepage = "https://github.com/prowler-cloud/py-ocsf-models";
    changelog = "https://github.com/prowler-cloud/py-ocsf-models/releases/tag/${src.tag}";
    changelog = "https://github.com/prowler-cloud/py-ocsf-models/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})