nixpkgs/pkgs/development/python-modules/cornice/default.nix

32 lines
636 B
Nix
Raw Normal View History

2018-10-15 16:10:43 +00:00
{ stdenv
, buildPythonPackage
, fetchPypi
, pyramid
, simplejson
, six
, venusian
}:
buildPythonPackage rec {
pname = "cornice";
2019-02-14 07:37:13 +00:00
version = "3.5.1";
2018-10-15 16:10:43 +00:00
src = fetchPypi {
inherit pname version;
2019-02-14 07:37:13 +00:00
sha256 = "e95dceaee9ce16a09564c1226977a0fe62f1399701581b59c4188f5c91a86687";
2018-10-15 16:10:43 +00:00
};
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 ];
};
}