Files
nixpkgs/pkgs/development/python-modules/colander/default.nix
Wolfgang Walther c283f32d29 treewide: remove unused with
Auto-fixed by nixf-diagnose.
2025-10-05 10:50:41 +02:00

43 lines
787 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 = [ ];
};
}