Skip to content

Commit 9d5c28d

Browse files
committedMay 22, 2017
pants: fix buggy pathspec version
When transplanting the expression in 845d1b2 I accidentally switched pants 1.3 to use the old pathspec, which breaks at runtime. This should fix it.
1 parent 0d88299 commit 9d5c28d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎pkgs/development/tools/build-managers/pants/default.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ with pythonPackages;
55

66
let
77
# Get rid of this when pants 1.3.0 is released and make 0.5 the default
8-
pathspec = buildPythonApplication rec {
8+
pathspec_0_3_4 = buildPythonApplication rec {
99
pname = "pathspec";
1010
version = "0.3.4";
1111
name = "${pname}-${version}";
@@ -44,7 +44,7 @@ in {
4444

4545
propagatedBuildInputs = [
4646
ansicolors beautifulsoup4 cffi coverage docutils fasteners futures
47-
isort lmdb markdown mock packaging pathspec pep8 pex psutil pyflakes
47+
isort lmdb markdown mock packaging pathspec_0_3_4 pep8 pex psutil pyflakes
4848
pygments pystache pytestcov pytest pywatchman requests scandir
4949
setproctitle setuptools six thrift wheel twitter-common-dirutil
5050
twitter-common-confluence twitter-common-collections

0 commit comments

Comments
 (0)