Merge remote-tracking branch 'origin/master' into stdenv-updates
This commit is contained in:
@@ -2655,12 +2655,12 @@ pythonPackages = python.modules // rec {
|
||||
});
|
||||
|
||||
ldap = buildPythonPackage rec {
|
||||
name = "python-ldap-2.4.3";
|
||||
name = "python-ldap-2.4.10";
|
||||
namePrefix = "";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://pypi.python.org/packages/source/p/python-ldap/${name}.tar.gz";
|
||||
sha256 = "17aysa9b4zjw00ikjirf4m37xbp2ifj1g0zjs14xzqqib3nh1yw8";
|
||||
sha256 = "0m6fm2alcb5v9xdcjv2nw2lhz9nnd3mnr5lrmf397hi4pw0pik37";
|
||||
};
|
||||
|
||||
NIX_CFLAGS_COMPILE = "-I${pkgs.cyrus_sasl}/include/sasl";
|
||||
@@ -4718,4 +4718,30 @@ pythonPackages = python.modules // rec {
|
||||
};
|
||||
};
|
||||
|
||||
ws4py = buildPythonPackage rec {
|
||||
name = "ws4py-${version}";
|
||||
|
||||
version = "git-20130303";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://github.com/Lawouach/WebSocket-for-Python.git";
|
||||
rev = "ace276500ca7e4c357595e3773be151d37bcd6e2";
|
||||
sha256 = "04m4m3ncn7g4rb81xg5n28imns7rsq8d2w98gjpaib6vlmyly3g1";
|
||||
};
|
||||
|
||||
# python zip complains about old timestamps
|
||||
preConfigure = ''
|
||||
find -print0 | xargs -0 touch
|
||||
'';
|
||||
|
||||
# Tests depend on other packages
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
homepage = https://ws4py.readthedocs.org;
|
||||
description = "A WebSocket package for Python";
|
||||
maintainers = [ stdenv.lib.maintainers.rickynils ];
|
||||
};
|
||||
};
|
||||
|
||||
}; in pythonPackages
|
||||
|
||||
Reference in New Issue
Block a user