blob: dc66ff0948f6beda442451709eb3093648e2c36b (
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
35
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
gitUpdater,
six,
setuptools,
}:
buildPythonPackage rec {
pname = "xmpppy";
version = "0.7.2";
pyproject = true;
src = fetchFromGitHub {
owner = "xmpppy";
repo = "xmpppy";
tag = version;
hash = "sha256-lemHFPb1oQGL3O5lHOBsyEqTAzKmZ0khBHL73gXh8PA=";
};
dependencies = [ six ];
build-system = [ setuptools ];
passthru.updateScript = gitUpdater { };
meta = {
description = "Python 2/3 implementation of XMPP";
homepage = "https://github.com/xmpppy/xmpppy";
changelog = "https://github.com/xmpppy/xmpppy/blob/${version}/CHANGES.rst";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ jopejoe1 ];
};
}
|