1{ lib
2, buildPythonPackage
3, fetchPypi
4, setuptools
5, babel
6, translationstring
7, iso8601
8, pytestCheckHook
9}:
10
11buildPythonPackage rec {
12 pname = "colander";
13 version = "2.0";
14 format = "pyproject";
15
16 src = fetchPypi {
17 inherit pname version;
18 hash = "sha256-QZzWgXjS7m7kyuXVyxgwclY0sKKECRcVbonrJZIjfvM=";
19 };
20
21 nativeBuildInputs = [
22 babel
23 setuptools
24 ];
25
26 propagatedBuildInputs = [
27 translationstring
28 iso8601
29 ];
30
31 pythonImportsCheck = [
32 "colander"
33 ];
34
35 nativeCheckInputs = [
36 pytestCheckHook
37 ];
38
39 meta = with lib; {
40 description = "A simple schema-based serialization and deserialization library";
41 homepage = "https://github.com/Pylons/colander";
42 license = licenses.free; # http://repoze.org/LICENSE.txt
43 maintainers = with maintainers; [ domenkozar ];
44 };
45}