blob: ee35d962d1d85fe4655b93fbf37ecd887b661f9b (
plain)
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
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
requests,
}:
buildPythonPackage rec {
pname = "gitterpy";
version = "0.1.7";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-nmZ6sVjrHRLfvXMr/fYiN+a4Wly87YKwAR+heP/sNkE=";
};
build-system = [ setuptools ];
dependencies = [ requests ];
# Package has no tests
doCheck = false;
pythonImportsCheck = [ "gitterpy" ];
meta = {
description = "Python interface for the Gitter API";
homepage = "https://github.com/MichaelYusko/GitterPy";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
|