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

42 lines
964 B
Nix
Raw Normal View History

2018-03-20 11:38:29 +00:00
{ lib, buildPythonPackage, fetchPypi
2018-03-20 11:44:08 +00:00
, chameleon, colander, iso8601, peppercorn, translationstring, zope_deprecation
, nose, coverage, beautifulsoup4, flaky }:
2018-03-20 11:38:29 +00:00
buildPythonPackage rec {
pname = "deform";
2020-07-31 08:56:38 +00:00
version = "2.0.10";
2018-03-20 11:38:29 +00:00
src = fetchPypi {
inherit pname version;
2020-07-31 08:56:38 +00:00
sha256 = "2f4e98a5b5bdcdfff9a62f88bd17c7ee378b7c8be61738797442eed5b961d3d2";
2018-03-20 11:38:29 +00:00
};
2018-03-20 11:44:08 +00:00
postPatch = ''
substituteInPlace setup.py \
--replace "iso8601<=0.1.11" iso8601
'';
2018-03-20 11:38:29 +00:00
propagatedBuildInputs = [
2018-03-20 11:44:08 +00:00
chameleon
2018-03-20 11:38:29 +00:00
colander
2018-03-20 11:44:08 +00:00
iso8601
peppercorn
2018-03-20 11:38:29 +00:00
translationstring
zope_deprecation
2018-03-20 11:44:08 +00:00
];
checkInputs = [
2018-03-20 11:38:29 +00:00
nose
2018-03-20 11:44:08 +00:00
coverage
beautifulsoup4
flaky
2018-03-20 11:38:29 +00:00
];
meta = with lib; {
description = "Form library with advanced features like nested forms";
homepage = "https://docs.pylonsproject.org/projects/deform/en/latest/";
2018-03-20 11:38:29 +00:00
license = licenses.free; # http://www.repoze.org/LICENSE.txt
maintainers = with maintainers; [ domenkozar ];
2018-03-20 11:38:29 +00:00
};
}