3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #29360 from disassembler/ws4py

ws4py: add git to checkInputs
This commit is contained in:
Frederik Rietdijk 2017-09-14 13:19:04 +02:00 committed by GitHub
commit aff5ef6481
2 changed files with 27 additions and 23 deletions

View file

@ -0,0 +1,26 @@
{ stdenv, buildPythonPackage, fetchPypi, pytest, mock, git, asyncio
, cherrypy, gevent, tornado }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "ws4py";
version = "0.4.2";
src = fetchPypi {
inherit pname version;
sha256 = "0zr3254ky6r7q15l3dhdczfa8i723055zdkqssjifsgcwvirriks";
};
checkInputs = [ pytest mock git ];
propagatedBuildInputs = [ asyncio cherrypy gevent tornado ];
checkPhase = ''
pytest test
'';
meta = with stdenv.lib; {
homepage = https://ws4py.readthedocs.org;
description = "A WebSocket package for Python";
maintainers = with maintainers; [ rickynils ];
};
}

View file

@ -24533,29 +24533,7 @@ EOF
}; };
}; };
ws4py = buildPythonPackage rec { ws4py = callPackage ../development/python-modules/ws4py {};
name = "${pname}-${version}";
pname = "ws4py";
version = "0.4.2";
src = fetchPypi {
inherit pname version;
sha256 = "0zr3254ky6r7q15l3dhdczfa8i723055zdkqssjifsgcwvirriks";
};
buildInputs = with self; [ pytest mock ];
propagatedBuildInputs = with self; [ asyncio cherrypy gevent tornado ];
checkPhase = ''
pytest test
'';
meta = {
homepage = https://ws4py.readthedocs.org;
description = "A WebSocket package for Python";
maintainers = with maintainers; [ rickynils ];
};
};
gdata = buildPythonPackage rec { gdata = buildPythonPackage rec {
name = "gdata-${version}"; name = "gdata-${version}";