nixpkgs/pkgs/by-name/co/conpass/package.nix
Fabian Affolter cbe75de62a conpass: init at 0.1.2
Continuous password spraying tool

https://github.com/login-securite/conpass
2024-06-13 14:32:47 +02:00

43 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";
};
}