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

32 lines
638 B
Nix
Raw Normal View History

2018-10-15 17:10:43 +01:00
{ stdenv
, buildPythonPackage
, fetchPypi
, pyramid
, simplejson
, six
, venusian
}:
buildPythonPackage rec {
pname = "cornice";
2020-06-06 07:47:02 +01:00
version = "5.0.1";
2018-10-15 17:10:43 +01:00
src = fetchPypi {
inherit pname version;
2020-06-06 07:47:02 +01:00
sha256 = "4efa77a0d0402f1b92481a53853d65936956a568d64a4f6a703b62feb5b8cf62";
2018-10-15 17:10:43 +01: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";
2018-10-15 17:10:43 +01:00
description = "Build Web Services with Pyramid";
license = licenses.mpl20;
maintainers = [ maintainers.costrouc ];
};
}