1 { lib, buildPythonPackage, fetchPypi, isPy3k, twisted }:
3 buildPythonPackage rec {
11 sha256 = "afb6ba85a5351953578c018fcdb9dfbd62f29a8d46c58bc9652bc000a27223f3";
14 propagatedBuildInputs = [ twisted ];
16 nativeCheckInputs = [ twisted ];
23 description = "Nevow, a web application construction kit for Python";
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.
41 homepage = "https://github.com/twisted/nevow";
42 license = licenses.mit;