diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-24 20:01:35 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-24 20:02:26 -0400 |
commit | 381da6260f7efa30f44b93dbd422f6ee1ee02bb6 (patch) | |
tree | 701d131112297a862817dfc67b89b1e6b20805c0 | |
parent | 6378c9bb681d9ad38333ae11a9694316a447edaf (diff) | |
download | guix-381da6260f7efa30f44b93dbd422f6ee1ee02bb6.tar.gz |
gnu: docker-compose: Use python-jsonschema-3 to fix build.
* gnu/packages/docker.scm (docker-compose) [inputs]: Replace python-jsonschema with python-jsonschema-3.
-rw-r--r-- | gnu/packages/docker.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/docker.scm b/gnu/packages/docker.scm index 44e9ddd2e8..3445453093 100644 --- a/gnu/packages/docker.scm +++ b/gnu/packages/docker.scm @@ -102,6 +102,8 @@ pseudo-terminal (PTY) allocated to a Docker container using the Python client.") (license license:asl2.0))) +;;; TODO: This package needs to be updated to its 2.x series, now authored in +;;; Go. (define-public docker-compose (package (name "docker-compose") @@ -123,7 +125,7 @@ client.") python-dockerpty python-docopt python-dotenv - python-jsonschema + python-jsonschema-3 python-pyyaml-5 python-requests python-six |