python310Packages.metakernel: fix build

The package switched to hatch as the build backend in 0.29.2.
This commit is contained in:
Steven Keuchel
2022-12-07 22:02:25 +01:00
parent 68945ff393
commit 77fe210819
@@ -1,18 +1,24 @@
{ lib
, buildPythonPackage
, fetchPypi
, hatchling
, ipykernel
}:
buildPythonPackage rec {
pname = "metakernel";
version = "0.29.2";
format = "pyproject";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-A++uLR4hhOQYmA6o9wBTejFju3CpbK0hwIs7XFscddQ=";
};
nativeBuildInputs = [
hatchling
];
propagatedBuildInputs = [ ipykernel ];
# Tests hang, so disable