Loading pkgs/development/python-modules/ploomber-extension/default.nix 0 → 100644 +51 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, pythonOlder, fetchPypi, hatchling, hatch-jupyter-builder, hatch-nodejs-version, jupyterlab, ploomber-core, pytestCheckHook, pytest-jupyter, }: buildPythonPackage rec { pname = "ploomber-extension"; version = "0.1.1"; pyproject = true; disabled = pythonOlder "3.6"; # using pypi archive which includes pre-built assets src = fetchPypi { pname = "ploomber_extension"; inherit version; hash = "sha256-wsldqLhJfOESH9aMMzz1Y/FXofHyfgrl81O95NePXSA="; }; build-system = [ hatchling hatch-jupyter-builder hatch-nodejs-version jupyterlab ]; dependencies = [ ploomber-core ]; nativeCheckInputs = [ pytestCheckHook pytest-jupyter ]; pythonImportsCheck = [ "ploomber_extension" ]; meta = with lib; { description = "Ploomber extension"; homepage = "https://pypi.org/project/ploomber-extension"; license = licenses.bsd3; maintainers = with maintainers; [ pacien ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -10354,6 +10354,8 @@ self: super: with self; { ploomber-core = callPackage ../development/python-modules/ploomber-core { }; ploomber-extension = callPackage ../development/python-modules/ploomber-extension { }; plotext = callPackage ../development/python-modules/plotext { }; plotly = callPackage ../development/python-modules/plotly { }; Loading Loading
pkgs/development/python-modules/ploomber-extension/default.nix 0 → 100644 +51 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, pythonOlder, fetchPypi, hatchling, hatch-jupyter-builder, hatch-nodejs-version, jupyterlab, ploomber-core, pytestCheckHook, pytest-jupyter, }: buildPythonPackage rec { pname = "ploomber-extension"; version = "0.1.1"; pyproject = true; disabled = pythonOlder "3.6"; # using pypi archive which includes pre-built assets src = fetchPypi { pname = "ploomber_extension"; inherit version; hash = "sha256-wsldqLhJfOESH9aMMzz1Y/FXofHyfgrl81O95NePXSA="; }; build-system = [ hatchling hatch-jupyter-builder hatch-nodejs-version jupyterlab ]; dependencies = [ ploomber-core ]; nativeCheckInputs = [ pytestCheckHook pytest-jupyter ]; pythonImportsCheck = [ "ploomber_extension" ]; meta = with lib; { description = "Ploomber extension"; homepage = "https://pypi.org/project/ploomber-extension"; license = licenses.bsd3; maintainers = with maintainers; [ pacien ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -10354,6 +10354,8 @@ self: super: with self; { ploomber-core = callPackage ../development/python-modules/ploomber-core { }; ploomber-extension = callPackage ../development/python-modules/ploomber-extension { }; plotext = callPackage ../development/python-modules/plotext { }; plotly = callPackage ../development/python-modules/plotly { }; Loading