10 buildPythonPackage rec {
11 pname = "libgravatar";
15 disabled = pythonOlder "3.8";
17 src = fetchFromGitHub {
20 rev = "refs/tags/${version}";
21 hash = "sha256-rJv/jfdT+JldxR0kKtXQLOI5wXQYSQRWJnqwExwWjTA=";
24 build-system = [ setuptools ];
26 nativeCheckInputs = [ pytestCheckHook ];
28 pythonImportsCheck = [ "libgravatar" ];
31 description = "Library that provides a Python 3 interface for the Gravatar API";
32 homepage = "https://github.com/pabluk/libgravatar";
33 changelog = "https://github.com/pabluk/libgravatar/releases/tag/${version}";
34 license = licenses.gpl3Plus;
35 maintainers = with maintainers; [ gador ];