My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/FormEncode/default.nix

49 lines
903 B

{ lib
, buildPythonPackage
, isPy27
, fetchPypi
, setuptools-scm
, six
, dnspython
, pycountry
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "FormEncode";
version = "2.0.1";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "8f2974112c2557839d5bae8b76490104c03830785d923abbdef148bf3f710035";
};
postPatch = ''
sed -i '/setuptools_scm_git_archive/d' setup.py
'';
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [ six ];
checkInputs = [
dnspython
pycountry
pytestCheckHook
];
disabledTests = [
# requires network for DNS resolution
"test_doctests"
"test_unicode_ascii_subgroup"
];
meta = with lib; {
description = "FormEncode validates and converts nested structures";
homepage = "http://formencode.org";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}