mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
python37Packages.poetry: fix build
This commit is contained in:
parent
76079f270c
commit
725dc741c1
1 changed files with 3 additions and 4 deletions
|
@ -32,6 +32,7 @@ let
|
|||
in buildPythonPackage rec {
|
||||
pname = "poetry";
|
||||
version = "1.0.3";
|
||||
format = "pyproject";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
|
@ -42,12 +43,10 @@ in buildPythonPackage rec {
|
|||
substituteInPlace pyproject.toml \
|
||||
--replace "pyrsistent = \"^0.14.2\"" "pyrsistent = \"^0.15.0\"" \
|
||||
--replace "requests-toolbelt = \"^0.8.0\"" "requests-toolbelt = \"^0.9.0\"" \
|
||||
--replace "importlib-metadata = {version = \"~1.1.3\", python = \"<3.8\"}" \
|
||||
"importlib-metadata = {version = \"~1.3.0\", python = \"<3.8\"}"
|
||||
--replace 'importlib-metadata = {version = "~1.1.3", python = "<3.8"}' \
|
||||
'importlib-metadata = {version = ">=1.3,<2", python = "<3.8"}'
|
||||
'';
|
||||
|
||||
format = "pyproject";
|
||||
|
||||
nativeBuildInputs = [ intreehooks ];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
|
|
Loading…
Reference in a new issue