Unverified Commit 23703b43 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.bhopengraph: 1.3.0 -> 1.3.1 (#487957)

parents 19cc1718 c4e99d99
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -5,16 +5,16 @@
  poetry-core,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "bhopengraph";
  version = "1.3.0";
  version = "1.3.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "p0dalirius";
    repo = "bhopengraph";
    tag = "v${version}";
    hash = "sha256-rpJZhABYsiv3uZdb6zLEYGYMOv8Gyd6kZ9k0d9Ob1FQ=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-pT+xdcxFLQUrXpZxS0gmXjyhtR1jqDsBAPHgEhxX2R8=";
  };

  build-system = [ poetry-core ];
@@ -27,8 +27,8 @@ buildPythonPackage rec {
  meta = {
    description = "Library to create BloodHound OpenGraphs";
    homepage = "https://github.com/p0dalirius/bhopengraph";
    changelog = "https://github.com/p0dalirius/bhopengraph/releases/tag/${src.tag}";
    changelog = "https://github.com/p0dalirius/bhopengraph/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})