1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, pyramid
5, simplejson
6, six
7, venusian
8}:
9
10buildPythonPackage rec {
11 pname = "cornice";
12 version = "3.5.1";
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "e95dceaee9ce16a09564c1226977a0fe62f1399701581b59c4188f5c91a86687";
17 };
18
19 propagatedBuildInputs = [ pyramid simplejson six venusian ];
20
21 # tests not packaged with pypi release
22 doCheck = false;
23
24 meta = with stdenv.lib; {
25 homepage = https://github.com/mozilla-services/cornice;
26 description = "Build Web Services with Pyramid";
27 license = licenses.mpl20;
28 maintainers = [ maintainers.costrouc ];
29 };
30
31}