Unverified Commit 9e6090f9 authored by Florian Brandes's avatar Florian Brandes
Browse files

python311Packages.libgravatar: fix call to package

parent 6f8b8fa6
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
{
  lib,
  python3Packages,
  buildPythonPackage,
  fetchFromGitHub,
  setuptools,
  pytestCheckHook,
}:

python3Packages.buildPythonApplication rec {
buildPythonPackage rec {
  pname = "libgravatar";
  version = "1.0.4";

@@ -15,9 +17,9 @@ python3Packages.buildPythonApplication rec {
    hash = "sha256-rJv/jfdT+JldxR0kKtXQLOI5wXQYSQRWJnqwExwWjTA=";
  };

  nativeBuildInputs = with python3Packages; [ setuptools ];
  nativeBuildInputs = [ setuptools ];

  nativeCheckInputs = with python3Packages; [ pytestCheckHook ];
  nativeCheckInputs = [ pytestCheckHook ];

  pythonImportsCheck = [ "libgravatar" ];