8 buildPythonPackage rec {
11 format = "setuptools";
13 src = fetchFromGitHub {
17 hash = "sha256-FIdJWpkOmUVZb+IkYocu1nn+oSPROrkcHeiw9wZupgM=";
20 propagatedBuildInputs = [
24 nativeCheckInputs = [ pytestCheckHook ];
26 pythonImportsCheck = [ "treelib" ];
29 description = "An efficient implementation of tree data structure in python 2/3";
30 homepage = "https://github.com/caesar0301/treelib";
31 changelog = "https://github.com/caesar0301/treelib/releases/tag/${src.rev}";
32 license = licenses.asl20;
33 maintainers = with maintainers; [ mbalatsko ];