gitAndTools.pre-commit: init at 1.10.4

This commit is contained in:
Boris Babic 2018-07-31 01:19:24 +02:00 committed by Robert Schütz
parent 37bfdc1e6a
commit 585b0acbc9
2 changed files with 33 additions and 0 deletions

View file

@ -111,6 +111,8 @@ let
hubUnstable = throw "use gitAndTools.hub instead";
pre-commit = callPackage ./pre-commit { };
qgit = qt5.callPackage ./qgit { };
stgit = callPackage ./stgit {

View file

@ -0,0 +1,31 @@
{ stdenv, python3Packages }:
with python3Packages; buildPythonApplication rec {
pname = "pre_commit";
version = "1.10.4";
src = fetchPypi {
inherit pname version;
sha256 = "1kn8h9k9ca330m5n7r4cvxp679y3sc95m1x23a3qhzgam09n7jwr";
};
propagatedBuildInputs = [
aspy-yaml
cached-property
cfgv
identify
nodeenv
six
toml
virtualenv
];
# Tests fail due to a missing windll dependency
doCheck = false;
meta = with stdenv.lib; {
description = "A framework for managing and maintaining multi-language pre-commit hooks";
homepage = https://pre-commit.com/;
license = licenses.mit;
maintainers = with maintainers; [ borisbabic ];
};
}