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