mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 10:53:52 +00:00
python311Packages.ipyparallel: fix build
This commit is contained in:
parent
eb7e2246c4
commit
856744396a
@ -19,9 +19,9 @@
|
|||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "ipyparallel";
|
pname = "ipyparallel";
|
||||||
version = "8.7.0";
|
version = "8.7.0";
|
||||||
format = "pyproject";
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.8";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
@ -33,14 +33,14 @@ buildPythonPackage rec {
|
|||||||
#
|
#
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace pyproject.toml \
|
substituteInPlace pyproject.toml \
|
||||||
--replace '"jupyterlab>=3.0.0,==3.*",' ""
|
--replace '"jupyterlab==4.*",' ""
|
||||||
'';
|
'';
|
||||||
|
|
||||||
nativeBuildInputs = [
|
build-system = [
|
||||||
hatchling
|
hatchling
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
dependencies = [
|
||||||
decorator
|
decorator
|
||||||
entrypoints
|
entrypoints
|
||||||
ipykernel
|
ipykernel
|
||||||
|
Loading…
Reference in New Issue
Block a user