nixpkgs/pkgs/tools/admin/gixy/default.nix

44 lines
1.1 KiB
Nix
Raw Normal View History

2021-03-03 02:28:44 +00:00
{ lib, fetchFromGitHub, python3 }:
2017-11-12 22:03:59 +00:00
2021-03-03 02:28:44 +00:00
python3.pkgs.buildPythonApplication rec {
2018-03-04 11:09:08 +00:00
pname = "gixy";
2018-09-28 21:28:10 +00:00
version = "0.1.20";
2017-11-12 22:03:59 +00:00
# package is only compatible with python 2.7 and 3.5+
2021-03-03 02:28:44 +00:00
disabled = with python3.pkgs; !(pythonAtLeast "3.5" || isPy27);
2017-11-12 22:03:59 +00:00
2018-03-04 11:09:08 +00:00
# fetching from GitHub because the PyPi source is missing the tests
2017-11-12 22:03:59 +00:00
src = fetchFromGitHub {
owner = "yandex";
repo = "gixy";
rev = "v${version}";
2018-09-28 21:28:10 +00:00
sha256 = "14arz3fjidb8z37m08xcpih1391varj8s0v3gri79z3qb4zq5k6b";
2017-11-12 22:03:59 +00:00
};
postPatch = ''
sed -ie '/argparse/d' setup.py
'';
2021-03-03 02:28:44 +00:00
propagatedBuildInputs = with python3.pkgs; [
2017-11-12 22:03:59 +00:00
cached-property
ConfigArgParse
pyparsing
jinja2
nose
setuptools
2017-11-12 22:03:59 +00:00
six
];
meta = with lib; {
description = "Nginx configuration static analyzer";
longDescription = ''
Gixy is a tool to analyze Nginx configuration.
The main goal of Gixy is to prevent security misconfiguration and automate flaw detection.
'';
homepage = "https://github.com/yandex/gixy";
2017-11-12 22:03:59 +00:00
license = licenses.mpl20;
maintainers = [ maintainers.willibutz ];
platforms = platforms.linux;
};
}