biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / treelib / default.nix
blob213823da0e28334afea133edbc56b651e1f8476c
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   six,
6   pytestCheckHook,
7 }:
9 buildPythonPackage rec {
10   pname = "treelib";
11   version = "1.7.0";
12   format = "setuptools";
14   src = fetchFromGitHub {
15     owner = "caesar0301";
16     repo = "treelib";
17     rev = "v${version}";
18     hash = "sha256-FIdJWpkOmUVZb+IkYocu1nn+oSPROrkcHeiw9wZupgM=";
19   };
21   propagatedBuildInputs = [ six ];
23   nativeCheckInputs = [ pytestCheckHook ];
25   pythonImportsCheck = [ "treelib" ];
27   meta = with lib; {
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 ];
33   };