mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
pants: fix buggy pathspec version
When transplanting the expression in 845d1b28bf
I accidentally switched pants 1.3 to use the old pathspec, which breaks
at runtime. This should fix it.
This commit is contained in:
parent
0d88299019
commit
9d5c28d22c
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue