pythonPackages.sleekxmpp: fix dnspython issue
This commit is contained in:
23
pkgs/development/python-modules/sleekxmpp/default.nix
Normal file
23
pkgs/development/python-modules/sleekxmpp/default.nix
Normal file
@@ -0,0 +1,23 @@
|
||||
{ stdenv, fetchurl, buildPythonPackage, dns, pyasn1 }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "sleekxmpp-${version}";
|
||||
version = "1.3.1";
|
||||
|
||||
propagatedBuildInputs = [ dns pyasn1 ];
|
||||
|
||||
patches = [
|
||||
./dnspython-ip6.patch
|
||||
];
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://pypi/s/sleekxmpp/${name}.tar.gz";
|
||||
sha256 = "1krkhkvj8xw5a6c2xlf7h1rg9xdcm9d8x2niivwjahahpvbl6krr";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "XMPP library for Python";
|
||||
license = licenses.mit;
|
||||
homepage = "http://sleekxmpp.com/";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user