File tree 2 files changed +18
-15
lines changed
development/python-modules/nbxmpp
2 files changed +18
-15
lines changed Original file line number Diff line number Diff line change
1
+ { stdenv , buildPythonPackage , fetchPypi } :
2
+
3
+ buildPythonPackage rec {
4
+ pname = "nbxmpp" ;
5
+ version = "0.6.0" ;
6
+
7
+ src = fetchPypi {
8
+ inherit pname version ;
9
+ sha256 = "0x495yb0abkdspyziw7dyyjwxx6ivnv5zznk92wa3mcind5s9757" ;
10
+ } ;
11
+
12
+ meta = with stdenv . lib ; {
13
+ homepage = "https://dev.gajim.org/gajim/python-nbxmpp" ;
14
+ description = "Non-blocking Jabber/XMPP module" ;
15
+ license = licenses . gpl3 ;
16
+ } ;
17
+ }
Original file line number Diff line number Diff line change @@ -11851,21 +11851,7 @@ in {
11851
11851
11852
11852
nbmerge = callPackage ../development/python-modules/nbmerge { };
11853
11853
11854
- nbxmpp = buildPythonPackage rec {
11855
- name = "nbxmpp-${version}";
11856
- version = "0.5.5";
11857
-
11858
- src = pkgs.fetchurl {
11859
- url = "mirror://pypi/n/nbxmpp/${name}.tar.gz";
11860
- sha256 = "1gnzrzrdl4nii1sc5x8p5iw2ya5sl70j3nn34abqsny51p2pzmv6";
11861
- };
11862
-
11863
- meta = {
11864
- homepage = "https://python-nbxmpp.gajim.org/";
11865
- description = "Non-blocking Jabber/XMPP module";
11866
- license = licenses.gpl3;
11867
- };
11868
- };
11854
+ nbxmpp = callPackage ../development/python-modules/nbxmpp { };
11869
11855
11870
11856
sleekxmpp = buildPythonPackage rec {
11871
11857
name = "sleekxmpp-${version}";
You can’t perform that action at this time.
0 commit comments