python3Packages.cfgv: 3.4.0 -> 3.5.0 (#463415)

This commit is contained in:
Nick Cao
2025-11-21 20:17:23 +00:00
committed by GitHub
@@ -1,33 +1,37 @@
{
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "cfgv";
version = "3.4.0";
format = "setuptools";
disabled = pythonOlder "3.8";
version = "3.5.0";
pyproject = true;
src = fetchFromGitHub {
owner = "asottile";
repo = "cfgv";
tag = "v${version}";
hash = "sha256-P02j53dltwdrlUBG89AI+P2GkXYKTVrQNF15rZt58jw=";
hash = "sha256-ccCalTNVEHvh1gKhQgceD/yAScIEQy3ZKqndoWs7FQQ=";
};
nativeCheckInputs = [ pytestCheckHook ];
build-system = [
setuptools
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "cfgv" ];
meta = with lib; {
meta = {
description = "Validate configuration and produce human readable error messages";
homepage = "https://github.com/asottile/cfgv";
license = licenses.mit;
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ nickcao ];
};
}