mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
cbe75de62a
Continuous password spraying tool https://github.com/login-securite/conpass
42 lines
889 B
Nix
42 lines
889 B
Nix
{
|
|
lib,
|
|
python3,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "conpass";
|
|
version = "0.1.2";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "login-securite";
|
|
repo = "conpass";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-7o4aQ6qpaWimWqgFO35Wht7mQsdVezoPTm7hp54FWR8=";
|
|
};
|
|
|
|
build-system = with python3.pkgs; [
|
|
setuptools
|
|
];
|
|
|
|
dependencies = with python3.pkgs; [
|
|
impacket
|
|
python-ldap
|
|
rich
|
|
];
|
|
|
|
# Project has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "conpass" ];
|
|
|
|
meta = with lib; {
|
|
description = "Continuous password spraying tool";
|
|
homepage = "https://github.com/login-securite/conpass";
|
|
changelog = "https://github.com/login-securite/conpass/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
mainProgram = "conpass";
|
|
};
|
|
}
|