Skip to content

Commit

Permalink
conpass: init at 0.1.2
Browse files Browse the repository at this point in the history
Continuous password spraying tool

https://github.com/login-securite/conpass
  • Loading branch information
fabaff committed Jun 13, 2024
1 parent 33ce263 commit cbe75de
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions pkgs/by-name/co/conpass/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
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";
};
}

0 comments on commit cbe75de

Please sign in to comment.