Merge pull request #215991 from fabaff/configobj-bump

python310Packages.configobj: 5.0.6 -> 5.0.8
This commit is contained in:
Mario Rodas 2023-02-12 12:55:20 -05:00 committed by GitHub
commit ace058d575
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,7 @@
buildPythonPackage rec {
pname = "configobj";
version = "5.0.6";
version = "5.0.8";
format = "setuptools";
disabled = pythonOlder "3.7";
@ -17,8 +17,8 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "DiffSK";
repo = pname;
rev = "v${version}";
hash = "sha256-HMLYzVMnxvMpb3ORsbKy18oU/NkuRT0isK6NaUk6J3U=";
rev = "refs/tags/v${version}";
hash = "sha256-t3Q0FEBibkAM5PAG4fjXwNH/71RqSSDj/Mn27ri0iDU=";
};
propagatedBuildInputs = [
@ -26,17 +26,21 @@ buildPythonPackage rec {
];
nativeCheckInputs = [
mock
pytestCheckHook
];
checkInputs = [
mock
];
pythonImportsCheck = [
"configobj"
];
meta = with lib; {
description = "Config file reading, writing and validation";
homepage = "https://pypi.python.org/pypi/configobj";
homepage = "https://github.com/DiffSK/configobj";
changelog = "https://github.com/DiffSK/configobj/blob/v${version}/CHANGES.rst";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};