blob: 57b799854854dfd88da017aa6563f0ed1bafb34e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "libgravatar";
version = "1.0.4";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "pabluk";
repo = "libgravatar";
rev = "refs/tags/${version}";
hash = "sha256-rJv/jfdT+JldxR0kKtXQLOI5wXQYSQRWJnqwExwWjTA=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "libgravatar" ];
meta = with lib; {
description = "Library that provides a Python 3 interface for the Gravatar API";
homepage = "https://github.com/pabluk/libgravatar";
changelog = "https://github.com/pabluk/libgravatar/releases/tag/${version}";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ gador ];
};
}
|