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

32 lines
638 B
Nix
Raw Normal View History

2018-10-15 18:10:43 +02:00
{ stdenv
, buildPythonPackage
, fetchPypi
, pyramid
, simplejson
, six
, venusian
}:
buildPythonPackage rec {
pname = "cornice";
2020-08-16 19:30:56 +02:00
version = "5.0.2";
2018-10-15 18:10:43 +02:00
src = fetchPypi {
inherit pname version;
2020-08-16 19:30:56 +02:00
sha256 = "4fcf3be295514e7e20fdd602fea8d204127bb02da2ff6bdbc8b6fba859ac9fd0";
2018-10-15 18:10:43 +02: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 18:10:43 +02:00
description = "Build Web Services with Pyramid";
license = licenses.mpl20;
maintainers = [ maintainers.costrouc ];
};
}