9 buildPythonPackage rec {
12 format = "setuptools";
14 src = fetchFromGitHub {
18 hash = "sha256-FIdJWpkOmUVZb+IkYocu1nn+oSPROrkcHeiw9wZupgM=";
21 propagatedBuildInputs = [ six ];
23 nativeCheckInputs = [ pytestCheckHook ];
25 pythonImportsCheck = [ "treelib" ];
28 description = "Efficient implementation of tree data structure in python 2/3";
29 homepage = "https://github.com/caesar0301/treelib";
30 changelog = "https://github.com/caesar0301/treelib/releases/tag/${src.rev}";
31 license = licenses.asl20;
32 maintainers = with maintainers; [ mbalatsko ];