ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pyramid / default.nix
blobfb1feb76731560f8a313199fe452f70363c7cef5
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , webtest
5 , zope_component
6 , hupper
7 , pastedeploy
8 , plaster
9 , plaster-pastedeploy
10 , repoze_lru
11 , translationstring
12 , venusian
13 , webob
14 , zope_deprecation
15 , zope_interface
18 buildPythonPackage rec {
19   pname = "pyramid";
20   version = "2.0";
22   src = fetchPypi {
23     inherit pname version;
24     sha256 = "45431b387587ed0fac6213b54d6e9f0936f0cc85238a8f5af7852fc9484c5c77";
25   };
27   checkInputs = [ webtest zope_component ];
29   propagatedBuildInputs = [ hupper pastedeploy plaster plaster-pastedeploy repoze_lru translationstring venusian webob zope_deprecation zope_interface ];
31   pythonImportsCheck = [ "pyramid" ];
33   meta = with lib; {
34     description = "The Pyramid Web Framework, a Pylons project";
35     homepage = "https://trypyramid.com/";
36     license = licenses.bsd0;
37     maintainers = with maintainers; [ domenkozar ];
38   };