mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
Merge pull request #249519 from tjni/graphql-relay
python3.pkgs.graphql-relay: patch out setuptools dependency
This commit is contained in:
commit
d2707373f2
1 changed files with 10 additions and 0 deletions
|
@ -27,6 +27,16 @@ buildPythonPackage rec {
|
|||
hash = "sha256-H/HFEpg1bkgaC+AJzN/ySYMs5T8wVZwTOPIqDg0XJQw=";
|
||||
};
|
||||
|
||||
# This project doesn't seem to actually need setuptools. To find out why it
|
||||
# specifies it, follow up in:
|
||||
#
|
||||
# https://github.com/graphql-python/graphql-relay-py/issues/49
|
||||
#
|
||||
postPatch = ''
|
||||
substituteInPlace pyproject.toml \
|
||||
--replace ', "setuptools>=59,<70"' ""
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
poetry-core
|
||||
];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue