mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Merge pull request #129403 from jonringer/fix-celery
python3Packges.celery: fix build
This commit is contained in:
commit
8eece91043
1 changed files with 4 additions and 0 deletions
|
@ -12,9 +12,13 @@ buildPythonPackage rec {
|
|||
sha256 = "54436cd97b031bf2e08064223240e2a83d601d9414bcb1b702f94c6c33c29485";
|
||||
};
|
||||
|
||||
# click is only used for the repl, in most cases this shouldn't impact
|
||||
# downstream packages
|
||||
postPatch = ''
|
||||
substituteInPlace requirements/test.txt \
|
||||
--replace "moto==1.3.7" moto
|
||||
substituteInPlace requirements/default.txt \
|
||||
--replace "click>=7.0,<8.0" click
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = [ billiard click click-didyoumean click-plugins click-repl kombu pytz vine ];
|
||||
|
|
Loading…
Reference in a new issue