{ stdenv , buildPythonPackage , fetchPypi , pyramid , simplejson , six , venusian }: buildPythonPackage rec { pname = "cornice"; version = "5.0.3"; src = fetchPypi { inherit pname version; sha256 = "f971831e90343374b21c0c97d523e23eb09cec41a2a8fc2e85bb5c2585348576"; }; 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 ]; }; }