9 buildPythonPackage rec {
12 format = "setuptools";
14 src = fetchFromGitHub {
17 rev = "refs/tags/v${version}";
18 hash = "sha256-zSv+6xT9H4WyShRnwjjcNMjY19AFlQ6bw9Mh9p2rL08=";
21 nativeCheckInputs = [ pytestCheckHook ];
23 propagatedBuildInputs = [ matplotlib ];
25 pythonImportsCheck = [ "squarify" ];
28 homepage = "https://github.com/laserson/squarify";
29 description = "Pure Python implementation of the squarify treemap layout algorithm";
30 license = licenses.asl20;
31 maintainers = with maintainers; [ veehaitch ];