depot/third_party/nixpkgs/pkgs/development/python-modules/colander/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

42 lines
818 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 = "A 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 ];
};
}