pythonPackages.ws4py: git-20130303 -> 0.4.2

This commit is contained in:
Jaakko Luttinen 2017-05-17 22:52:09 +03:00
parent ef54727795
commit a50b61f4fa
No known key found for this signature in database
GPG Key ID: 7B1CE13152E6B964

View File

@ -27899,23 +27899,21 @@ EOF
}; };
ws4py = buildPythonPackage rec { ws4py = buildPythonPackage rec {
name = "ws4py-${version}"; name = "${pname}-${version}";
pname = "ws4py";
version = "0.4.2";
version = "git-20130303"; src = fetchPypi {
inherit pname version;
src = pkgs.fetchgit { sha256 = "0zr3254ky6r7q15l3dhdczfa8i723055zdkqssjifsgcwvirriks";
url = "https://github.com/Lawouach/WebSocket-for-Python.git";
rev = "ace276500ca7e4c357595e3773be151d37bcd6e2";
sha256 = "1g7nmhjjxjf6vx75dyzns8bpid3b5i02kakk2lh1i297b5rw2rjq";
}; };
# python zip complains about old timestamps buildInputs = with self; [ pytest mock ];
preConfigure = '' propagatedBuildInputs = with self; [ asyncio cherrypy gevent tornado ];
find -print0 | xargs -0 touch
'';
# Tests depend on other packages checkPhase = ''
doCheck = false; pytest test
'';
meta = { meta = {
homepage = https://ws4py.readthedocs.org; homepage = https://ws4py.readthedocs.org;