11 buildPythonPackage rec {
14 format = "setuptools";
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
21 rev = "refs/tags/v${version}";
22 hash = "sha256-duPCGBaHCXp4A6ZHLnyL1SZtR7K4FJ4hs5wCE1V9WB4=";
25 propagatedBuildInputs = [ six ];
27 nativeCheckInputs = [ pytestCheckHook ];
29 checkInputs = [ mock ];
31 pythonImportsCheck = [ "configobj" ];
34 description = "Config file reading, writing and validation";
35 homepage = "https://github.com/DiffSK/configobj";
36 changelog = "https://github.com/DiffSK/configobj/blob/v${version}/CHANGES.rst";
37 license = licenses.bsd3;