about summary refs log tree commit diff
path: root/pkgs/applications/version-management
diff options
context:
space:
mode:
authorKristoffer Ellersgaard Koch <kristoffer.koch@gmail.com>2022-10-07 12:50:44 +0200
committerKristoffer Ellersgaard Koch <kristoffer.koch@gmail.com>2022-10-07 12:50:44 +0200
commit0d3742d948639d56c453f223da3c7761b348d6fa (patch)
treeabf7456d89eab69ec0165eabc9e39d57c7176dce /pkgs/applications/version-management
parentbcfd4d2c8de72c9d72c6b06fee68921e07946af3 (diff)
dvc: Don't strictly specify pathspec version
Diffstat (limited to 'pkgs/applications/version-management')
-rw-r--r--pkgs/applications/version-management/dvc/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/version-management/dvc/default.nix b/pkgs/applications/version-management/dvc/default.nix
index b8361d8bd7035..6f1c4fe185773 100644
--- a/pkgs/applications/version-management/dvc/default.nix
+++ b/pkgs/applications/version-management/dvc/default.nix
@@ -23,7 +23,8 @@ python3.pkgs.buildPythonApplication rec {
   postPatch = ''
     substituteInPlace setup.cfg \
       --replace "grandalf==0.6" "grandalf" \
-      --replace "scmrepo==0.0.25" "scmrepo"
+      --replace "scmrepo==0.0.25" "scmrepo" \
+      --replace "pathspec>=0.9.0,<0.10.0" "pathspec"
     substituteInPlace dvc/daemon.py \
       --subst-var-by dvc "$out/bin/dcv"
   '';