{ stdenv , buildPythonPackage , fetchPypi , pyramid , simplejson , six , venusian }: buildPythonPackage rec { pname = "cornice"; version = "3.6.1"; src = fetchPypi { inherit pname version; sha256 = "d3d608b9ff405e7ba5e9629ef0c09b7605997e1aea0dafb2aaa66761ff7cab08"; }; propagatedBuildInputs = [ pyramid simplejson six venusian ]; # tests not packaged with pypi release doCheck = false; meta = with stdenv.lib; { homepage = https://github.com/mozilla-services/cornice; description = "Build Web Services with Pyramid"; license = licenses.mpl20; maintainers = [ maintainers.costrouc ]; }; }