bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
42 lines
816 B
Nix
42 lines
816 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
babel,
|
|
translationstring,
|
|
iso8601,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "colander";
|
|
version = "2.0";
|
|
format = "pyproject";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-QZzWgXjS7m7kyuXVyxgwclY0sKKECRcVbonrJZIjfvM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
babel
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
translationstring
|
|
iso8601
|
|
];
|
|
|
|
pythonImportsCheck = [ "colander" ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
meta = with lib; {
|
|
description = "Simple schema-based serialization and deserialization library";
|
|
homepage = "https://github.com/Pylons/colander";
|
|
license = licenses.free; # http://repoze.org/LICENSE.txt
|
|
maintainers = with maintainers; [ domenkozar ];
|
|
};
|
|
}
|