ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
37 lines
763 B
Nix
37 lines
763 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "crlfsuite";
|
|
version = "2.5.2";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Nefcore";
|
|
repo = "CRLFsuite";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-mK20PbVGhTEjhY5L6coCzSMIrG/PHHmNq30ZoJEs6uI=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
colorama
|
|
requests
|
|
];
|
|
|
|
# No tests present
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"crlfsuite"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "CRLF injection (HTTP Response Splitting) scanner";
|
|
mainProgram = "crlfsuite";
|
|
homepage = "https://github.com/Nefcore/CRLFsuite";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ c0bw3b fab ];
|
|
};
|
|
}
|