gitAndTools.pre-commit: 1.11.1 -> 1.14.2
This commit is contained in:
parent
1b998ce854
commit
02a3a15bfd
1 changed files with 8 additions and 5 deletions
|
@ -1,11 +1,12 @@
|
|||
{ stdenv, python3Packages }:
|
||||
with python3Packages; buildPythonApplication rec {
|
||||
pname = "pre_commit";
|
||||
version = "1.11.1";
|
||||
pname = "pre-commit";
|
||||
version = "1.14.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1kjrq8z78b6aqhyyw07dlwf6cqls88kik6f5l07hs71fj5ddvs9w";
|
||||
inherit version;
|
||||
pname = "pre_commit";
|
||||
sha256 = "010fwih91gbc20hm2hmkyicm2a2xwrjjg4r4wv24x3n7zn4abdrc";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
|
@ -17,7 +18,9 @@ with python3Packages; buildPythonApplication rec {
|
|||
six
|
||||
toml
|
||||
virtualenv
|
||||
];
|
||||
importlib-metadata
|
||||
] ++ stdenv.lib.optional (pythonOlder "3.7") importlib-resources
|
||||
++ stdenv.lib.optional (pythonOlder "3.2") futures;
|
||||
|
||||
# Tests fail due to a missing windll dependency
|
||||
doCheck = false;
|
||||
|
|
Loading…
Reference in a new issue