python3Packages.hatch-jupyter-builder: init at 0.8.2

This commit is contained in:
Martin Weinelt 2023-01-04 18:40:31 +01:00
parent f411d20ab6
commit 998f4d139c
2 changed files with 50 additions and 0 deletions

View file

@ -0,0 +1,48 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, hatchling
, hatch
, pytest-mock
, pytestCheckHook
, tomli
, twine
}:
buildPythonPackage rec {
pname = "hatch-jupyter-builder";
version = "0.8.2";
format = "pyproject";
src = fetchFromGitHub {
owner = "jupyterlab";
repo = "hatch-jupyter-builder";
rev = "refs/tags/v${version}";
hash = "sha256-Ns5jrVfTAA7NuvUok3/13nIpXSSVZ6WRkgHyTuxkSKA=";
};
nativeBuildInputs = [
hatchling
];
checkInputs = [
hatch
pytest-mock
pytestCheckHook
tomli
twine
];
disabledTests = [
# tests pip install, which unsuprisingly fails
"test_hatch_build"
];
meta = with lib; {
changelog = "https://github.com/jupyterlab/hatch-jupyter-builder/releases/tag/v${version}";
description = "hatch plugin to help build Jupyter packages";
homepage = "https://github.com/jupyterlab/hatch-jupyter-builder";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};
}

View file

@ -4187,6 +4187,8 @@ self: super: with self; {
hatch-fancy-pypi-readme = callPackage ../development/python-modules/hatch-fancy-pypi-readme { };
hatch-jupyter-builder = callPackage ../development/python-modules/hatch-jupyter-builder { };
hatch-vcs = callPackage ../development/python-modules/hatch-vcs { };
hatch-nodejs-version = callPackage ../development/python-modules/hatch-nodejs-version { };