3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/cornice/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
665 B
Nix
Raw Normal View History

{ lib
2018-10-15 17:10:43 +01:00
, buildPythonPackage
, fetchPypi
, pyramid
, simplejson
, six
, venusian
}:
buildPythonPackage rec {
pname = "cornice";
version = "6.0.1";
2018-10-15 17:10:43 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "6edf6f206ff1c3d108d7a7b9ae640a2f4737cfc04f0914ccc4eefe511d3a8985";
2018-10-15 17:10:43 +01:00
};
propagatedBuildInputs = [ pyramid simplejson six venusian ];
# tests not packaged with pypi release
doCheck = false;
pythonImportsCheck = [ "cornice" ];
2018-10-15 17:10:43 +01:00
meta = with 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 ];
};
}