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
45
46
47
48
49
50
51
52
53
54
55
|
{
lib,
buildPythonPackage,
fetchPypi,
chameleon,
colander,
iso8601,
peppercorn,
translationstring,
zope-deprecation,
setuptools,
coverage,
beautifulsoup4,
flaky,
pyramid,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "deform";
version = "2.0.15";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-HpEpN2UMHbuDAHndnAOZUHYqIwIjpWd0D78bI/EJA2c=";
};
build-system = [ setuptools ];
dependencies = [
chameleon
colander
iso8601
peppercorn
translationstring
zope-deprecation
];
nativeCheckInputs = [
coverage
beautifulsoup4
flaky
pyramid
pytestCheckHook
];
meta = {
description = "Form library with advanced features like nested forms";
homepage = "https://docs.pylonsproject.org/projects/deform/en/latest/";
# https://github.com/Pylons/deform/blob/fdc43d59de7d11b0e3ba1b92835b780cfe181719/LICENSE.txt
license = [ lib.licenses.bsd3 lib.licenses.cc-by-30 ];
maintainers = with lib.maintainers; [ domenkozar ];
};
}
|