summary refs log tree commit diff
path: root/pkgs/development/python-modules/FormEncode/default.nix
blob: 72086a3487f3456cdf9f32fc5ce2d4ff0103d362 (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
{ stdenv, buildPythonPackage, fetchPypi, dnspython, pycountry, nose }:

buildPythonPackage rec {
  pname = "FormEncode";
  version = "1.3.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1xm77h2mds2prlaz0z4nzkx13g61rx5c2v3vpgjq9d5ij8bzb8md";
  };

  buildInputs = [ dnspython pycountry nose ];

  patchPhase = ''
    # dnspython3 has been superseded, see its PyPI page
    substituteInPlace setup.py --replace dnspython3 dnspython
  '';

  preCheck = ''
    # two tests require dns resolving
    sed -i 's/test_cyrillic_email/noop/' formencode/tests/test_email.py
    sed -i 's/test_unicode_ascii_subgroup/noop/' formencode/tests/test_email.py
  '';

  meta = with stdenv.lib; {
    description = "FormEncode validates and converts nested structures";
    homepage = http://formencode.org;
    license = licenses.mit;
  };
}