about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/nevow/default.nix
blob: af5b5374b5b048c3267634d42f13302f85ada078 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{ lib, buildPythonPackage, fetchPypi, isPy3k, twisted }:

buildPythonPackage rec {
  pname = "nevow";
  version = "0.14.5";
  disabled = isPy3k;

  src = fetchPypi {
    pname = "Nevow";
    inherit version;
    sha256 = "afb6ba85a5351953578c018fcdb9dfbd62f29a8d46c58bc9652bc000a27223f3";
  };

  propagatedBuildInputs = [ twisted ];

  nativeCheckInputs = [ twisted ];

  checkPhase = ''
    trial formless nevow
  '';

  meta = with lib; {
    description = "Nevow, a web application construction kit for Python";
    longDescription = ''
      Nevow - Pronounced as the French "nouveau", or "noo-voh", Nevow
      is a web application construction kit written in Python.  It is
      designed to allow the programmer to express as much of the view
      logic as desired in Python, and includes a pure Python XML
      expression syntax named stan to facilitate this.  However it
      also provides rich support for designer-edited templates, using
      a very small XML attribute language to provide bi-directional
      template manipulation capability.

      Nevow also includes formless, a declarative syntax for
      specifying the types of method parameters and exposing these
      methods to the web.  Forms can be rendered automatically, and
      form posts will be validated and input coerced, rendering error
      pages if appropriate.  Once a form post has validated
      successfully, the method will be called with the coerced values.
    '';
    homepage = "https://github.com/twisted/nevow";
    license = licenses.mit;
  };
}