xmpppy: init at 0.7.1
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user