From 9d5c28d22cf6573da2f75da2b9ec67f351c92f7d Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Mon, 22 May 2017 15:34:46 -0400 Subject: [PATCH] pants: fix buggy pathspec version When transplanting the expression in 845d1b28bf57d3f1eb016a323cf15808c0fbfd85 I accidentally switched pants 1.3 to use the old pathspec, which breaks at runtime. This should fix it. --- pkgs/development/tools/build-managers/pants/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/build-managers/pants/default.nix b/pkgs/development/tools/build-managers/pants/default.nix index 80ac3c60608..624e273cc90 100644 --- a/pkgs/development/tools/build-managers/pants/default.nix +++ b/pkgs/development/tools/build-managers/pants/default.nix @@ -5,7 +5,7 @@ with pythonPackages; let # Get rid of this when pants 1.3.0 is released and make 0.5 the default - pathspec = buildPythonApplication rec { + pathspec_0_3_4 = buildPythonApplication rec { pname = "pathspec"; version = "0.3.4"; name = "${pname}-${version}"; @@ -44,7 +44,7 @@ in { propagatedBuildInputs = [ ansicolors beautifulsoup4 cffi coverage docutils fasteners futures - isort lmdb markdown mock packaging pathspec pep8 pex psutil pyflakes + isort lmdb markdown mock packaging pathspec_0_3_4 pep8 pex psutil pyflakes pygments pystache pytestcov pytest pywatchman requests scandir setproctitle setuptools six thrift wheel twitter-common-dirutil twitter-common-confluence twitter-common-collections