python3Packages.validobj: 1.5 -> 1.6 (#478526)

This commit is contained in:
Fabian Affolter
2026-01-11 12:40:28 +00:00
committed by GitHub
@@ -2,22 +2,22 @@
lib,
buildPythonPackage,
fetchPypi,
flit,
flit-core,
hypothesis,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "validobj";
version = "1.5";
format = "pyproject";
version = "1.6";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-n2CEcZTPr57tbRhw5uFmcWZ1kHdBt2VzG/fS4+LDSyc=";
hash = "sha256-dXUvInNYkl10zdGQhJ6h1JqCNlZ+VsvwnEMb2xj6qOA=";
};
nativeBuildInputs = [ flit ];
build-system = [ flit-core ];
nativeCheckInputs = [
hypothesis
@@ -27,9 +27,9 @@ buildPythonPackage rec {
pythonImportsCheck = [ "validobj" ];
meta = {
description = "Validobj is library that takes semistructured data (for example JSON and YAML configuration files) and converts it to more structured Python objects";
description = "Library that takes semistructured data (for example JSON and YAML configuration files) and converts it to more structured Python objects";
homepage = "https://github.com/Zaharid/validobj";
license = with lib.licenses; [ mit ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ veprbl ];
};
}