diff --git a/pkgs/development/python-modules/validobj/default.nix b/pkgs/development/python-modules/validobj/default.nix index e7f5193ca389..360e6270b2d2 100644 --- a/pkgs/development/python-modules/validobj/default.nix +++ b/pkgs/development/python-modules/validobj/default.nix @@ -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 ]; }; }