xmpppy: init at 0.7.1

This commit is contained in:
jopejoe1
2024-06-06 18:38:35 +02:00
parent deed6fb8f3
commit a406a5c66e
2 changed files with 37 additions and 0 deletions
@@ -0,0 +1,35 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
gitUpdater,
six,
setuptools,
}:
buildPythonPackage rec {
pname = "xmpppy";
version = "0.7.1";
pyproject = true;
src = fetchFromGitHub {
owner = "xmpppy";
repo = "xmpppy";
rev = "refs/tags/${version}";
hash = "sha256-SnzIjEWSCdiCtD8bmPTH02JprmZhrABB4HCqtt2RBuk=";
};
dependencies = [ six ];
build-system = [ setuptools ];
passthru.updateScript = gitUpdater { };
meta = with lib; {
description = "Python 2/3 implementation of XMPP";
homepage = "https://github.com/xmpppy/xmpppy";
changelog = "https://github.com/xmpppy/xmpppy/blob/${version}/CHANGES.rst";
license = licenses.gpl3Only;
maintainers = with maintainers; [ jopejoe1 ];
};
}
+2
View File
@@ -17021,6 +17021,8 @@ self: super: with self; {
xmodem = callPackage ../development/python-modules/xmodem { };
xmpppy = callPackage ../development/python-modules/xmpppy { };
xnatpy = callPackage ../development/python-modules/xnatpy { };
xnd = callPackage ../development/python-modules/xnd { };