linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / deform / default.nix
blob5698dcbe491be22b5b1a9716c0cff2c916ed7b78
1 { lib, buildPythonPackage, fetchPypi
2 , chameleon, colander, iso8601, peppercorn, translationstring, zope_deprecation
3 , nose, coverage, beautifulsoup4, flaky, pyramid, pytestCheckHook }:
5 buildPythonPackage rec {
6   pname = "deform";
7   version = "2.0.15";
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "1e912937650c1dbb830079dd9c039950762a230223a567740fbf1b23f1090367";
12   };
14   propagatedBuildInputs = [
15     chameleon
16     colander
17     iso8601
18     peppercorn
19     translationstring
20     zope_deprecation
21   ];
23   checkInputs = [
24     nose
25     coverage
26     beautifulsoup4
27     flaky
28     pyramid
29     pytestCheckHook
30   ];
32   meta = with lib; {
33     description = "Form library with advanced features like nested forms";
34     homepage = "https://docs.pylonsproject.org/projects/deform/en/latest/";
35     license = licenses.free; # http://www.repoze.org/LICENSE.txt
36     maintainers = with maintainers; [ domenkozar ];
37   };