Unverified Commit 359f7488 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.standardwebhooks: 1.0.0 -> 1.0.1 (#492827)

parents 7220e8f0 9241e4f2
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -12,14 +12,14 @@
  types-python-dateutil,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "standardwebhooks";
  version = "1.0.0";
  version = "1.0.1";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-2UuZwNzqhBVuA62tlPjboy1UVMxo4S7CyCQFG1W7Z/8=";
    inherit (finalAttrs) pname version;
    hash = "sha256-tVe7LksWraF5pRfsD+bL7FrPl2xWGZIr8pxFf4mkUb0=";
  };

  build-system = [ setuptools ];
@@ -43,4 +43,4 @@ buildPythonPackage rec {
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})