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

32 lines
636 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";
2018-11-04 10:34:56 +00:00
version = "3.4.2";
2018-10-15 17:10:43 +01:00
src = fetchPypi {
inherit pname version;
2018-11-04 10:34:56 +00:00
sha256 = "c88f246aa6a84a0cdbaa8231a062c60e18ad9c0a65dc178f536ce5eb3a831418";
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;
description = "Build Web Services with Pyramid";
license = licenses.mpl20;
maintainers = [ maintainers.costrouc ];
};
}