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

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 = "5.0.3";
2018-10-15 17:10:43 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "f971831e90343374b21c0c97d523e23eb09cec41a2a8fc2e85bb5c2585348576";
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 ];
};
}