at master 737 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 gitUpdater, 6 six, 7 setuptools, 8}: 9 10buildPythonPackage rec { 11 pname = "xmpppy"; 12 version = "0.7.2"; 13 pyproject = true; 14 15 src = fetchFromGitHub { 16 owner = "xmpppy"; 17 repo = "xmpppy"; 18 tag = version; 19 hash = "sha256-lemHFPb1oQGL3O5lHOBsyEqTAzKmZ0khBHL73gXh8PA="; 20 }; 21 22 dependencies = [ six ]; 23 24 build-system = [ setuptools ]; 25 26 passthru.updateScript = gitUpdater { }; 27 28 meta = with lib; { 29 description = "Python 2/3 implementation of XMPP"; 30 homepage = "https://github.com/xmpppy/xmpppy"; 31 changelog = "https://github.com/xmpppy/xmpppy/blob/${version}/CHANGES.rst"; 32 license = licenses.gpl3Only; 33 maintainers = with maintainers; [ jopejoe1 ]; 34 }; 35}