nixpkgs/pkgs/development/tools/misc/whatstyle/default.nix

31 lines
908 B
Nix
Raw Normal View History

{ lib, python3, fetchFromGitHub, clang-unwrapped }:
2019-05-16 19:26:48 +00:00
python3.pkgs.buildPythonApplication rec {
pname = "whatstyle";
2020-03-31 04:42:13 +00:00
version = "0.1.8";
2019-05-16 19:26:48 +00:00
src = fetchFromGitHub {
owner = "mikr";
repo = pname;
rev = "v${version}";
2020-03-31 04:42:13 +00:00
sha256 = "08lfd8h5fnvy5gci4f3an411cypad7p2yiahvbmlp51r9xwpaiwr";
2019-05-16 19:26:48 +00:00
};
# Fix references to previous version, to avoid confusion:
postPatch = ''
substituteInPlace setup.py --replace 0.1.6 ${version}
substituteInPlace ${pname}.py --replace 0.1.6 ${version}
'';
checkInputs = [ clang-unwrapped /* clang-format */ ];
doCheck = false; # 3 or 4 failures depending on version, haven't investigated.
meta = with lib; {
2019-05-16 19:26:48 +00:00
description = "Find a code format style that fits given source files";
2020-03-31 04:42:13 +00:00
homepage = "https://github.com/mikr/whatstyle";
2019-05-16 19:26:48 +00:00
license = licenses.mit;
maintainers = with maintainers; [ dtzWill ];
platforms = platforms.all;
};
}