Loading pkgs/development/python-modules/squarify/default.nix 0 → 100644 +31 −0 Original line number Diff line number Diff line { buildPythonPackage , fetchFromGitHub , lib , pytestCheckHook , matplotlib }: buildPythonPackage rec { pname = "squarify"; version = "0.4.3"; src = fetchFromGitHub { owner = "laserson"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-zSv+6xT9H4WyShRnwjjcNMjY19AFlQ6bw9Mh9p2rL08="; }; nativeCheckInputs = [ pytestCheckHook ]; propagatedBuildInputs = [ matplotlib ]; pythonImportsCheck = [ "squarify" ]; meta = with lib; { homepage = "https://github.com/laserson/squarify"; description = "Pure Python implementation of the squarify treemap layout algorithm"; license = licenses.asl20; maintainers = with maintainers; [ veehaitch ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -11134,6 +11134,8 @@ self: super: with self; { sqltrie = callPackage ../development/python-modules/sqltrie { }; squarify = callPackage ../development/python-modules/squarify { }; srp = callPackage ../development/python-modules/srp { }; srpenergy = callPackage ../development/python-modules/srpenergy { }; Loading Loading
pkgs/development/python-modules/squarify/default.nix 0 → 100644 +31 −0 Original line number Diff line number Diff line { buildPythonPackage , fetchFromGitHub , lib , pytestCheckHook , matplotlib }: buildPythonPackage rec { pname = "squarify"; version = "0.4.3"; src = fetchFromGitHub { owner = "laserson"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-zSv+6xT9H4WyShRnwjjcNMjY19AFlQ6bw9Mh9p2rL08="; }; nativeCheckInputs = [ pytestCheckHook ]; propagatedBuildInputs = [ matplotlib ]; pythonImportsCheck = [ "squarify" ]; meta = with lib; { homepage = "https://github.com/laserson/squarify"; description = "Pure Python implementation of the squarify treemap layout algorithm"; license = licenses.asl20; maintainers = with maintainers; [ veehaitch ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -11134,6 +11134,8 @@ self: super: with self; { sqltrie = callPackage ../development/python-modules/sqltrie { }; squarify = callPackage ../development/python-modules/squarify { }; srp = callPackage ../development/python-modules/srp { }; srpenergy = callPackage ../development/python-modules/srpenergy { }; Loading