Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / nevow / default.nix
blobaf5b5374b5b048c3267634d42f13302f85ada078
1 { lib, buildPythonPackage, fetchPypi, isPy3k, twisted }:
3 buildPythonPackage rec {
4   pname = "nevow";
5   version = "0.14.5";
6   disabled = isPy3k;
8   src = fetchPypi {
9     pname = "Nevow";
10     inherit version;
11     sha256 = "afb6ba85a5351953578c018fcdb9dfbd62f29a8d46c58bc9652bc000a27223f3";
12   };
14   propagatedBuildInputs = [ twisted ];
16   nativeCheckInputs = [ twisted ];
18   checkPhase = ''
19     trial formless nevow
20   '';
22   meta = with lib; {
23     description = "Nevow, a web application construction kit for Python";
24     longDescription = ''
25       Nevow - Pronounced as the French "nouveau", or "noo-voh", Nevow
26       is a web application construction kit written in Python.  It is
27       designed to allow the programmer to express as much of the view
28       logic as desired in Python, and includes a pure Python XML
29       expression syntax named stan to facilitate this.  However it
30       also provides rich support for designer-edited templates, using
31       a very small XML attribute language to provide bi-directional
32       template manipulation capability.
34       Nevow also includes formless, a declarative syntax for
35       specifying the types of method parameters and exposing these
36       methods to the web.  Forms can be rendered automatically, and
37       form posts will be validated and input coerced, rendering error
38       pages if appropriate.  Once a form post has validated
39       successfully, the method will be called with the coerced values.
40     '';
41     homepage = "https://github.com/twisted/nevow";
42     license = licenses.mit;
43   };