nixpkgs/pkgs/development/python-modules/FormEncode/default.nix

31 lines
842 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, dnspython, pycountry, nose }:
2017-07-09 00:01:12 +00:00
buildPythonPackage rec {
pname = "FormEncode";
version = "1.3.1";
2017-07-09 00:01:12 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "1xm77h2mds2prlaz0z4nzkx13g61rx5c2v3vpgjq9d5ij8bzb8md";
2017-07-09 00:01:12 +00:00
};
buildInputs = [ dnspython pycountry nose ];
2017-07-09 00:01:12 +00:00
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;
2017-07-09 00:01:12 +00:00
license = licenses.mit;
};
}