mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 01:24:47 +00:00
commit
4110c547c2
42
pkgs/by-name/co/conpass/package.nix
Normal file
42
pkgs/by-name/co/conpass/package.nix
Normal file
@ -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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user