3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/cmake-format/default.nix

33 lines
658 B
Nix
Raw Normal View History

2019-06-28 08:12:47 +01:00
{ lib
, buildPythonApplication
, fetchPypi
, autopep8
, flake8
, jinja2
, pylint
, pyyaml
}:
buildPythonApplication rec {
pname = "cmake-format";
2020-03-04 02:22:03 +00:00
version = "0.6.9";
2019-06-28 08:12:47 +01:00
src = fetchPypi {
inherit version;
pname = "cmake_format";
2020-03-04 02:22:03 +00:00
sha256 = "082d7949gsk5v72ap7k4p3vgmc126a0bfm195xpi4lb6khpbzy5j";
2019-06-28 08:12:47 +01:00
};
propagatedBuildInputs = [ autopep8 flake8 jinja2 pylint pyyaml ];
doCheck = false;
meta = with lib; {
description = "Source code formatter for cmake listfiles";
homepage = "https://github.com/cheshirekow/cmake_format";
license = licenses.gpl3;
maintainers = [ maintainers.tobim ];
platforms = platforms.all;
};
}