13 buildPythonPackage rec {
14 pname = "hatch-jupyter-builder";
18 src = fetchFromGitHub {
20 repo = "hatch-jupyter-builder";
21 rev = "refs/tags/v${version}";
22 hash = "sha256-QDWHVdjtexUNGRL+dVehdBwahSW2HmNkZKkQyuOghyI=";
25 build-system = [ hatchling ];
27 dependencies = [ hatchling ];
33 ] ++ lib.optionals (pythonOlder "3.11") [ tomli ];
36 # tests pip install, which unsuprisingly fails
41 changelog = "https://github.com/jupyterlab/hatch-jupyter-builder/releases/tag/v${version}";
42 description = "hatch plugin to help build Jupyter packages";
43 mainProgram = "hatch-jupyter-builder";
44 homepage = "https://github.com/jupyterlab/hatch-jupyter-builder";
45 license = licenses.bsd3;