python310Packages.aardwolf: init at 0.0.8

This commit is contained in:
Fabian Affolter
2022-08-08 12:16:43 +02:00
parent 3e9d91af1d
commit 50fc8533e1
2 changed files with 59 additions and 0 deletions
@@ -0,0 +1,57 @@
{ lib
, arc4
, asn1crypto
, asn1tools
, asysocks
, buildPythonPackage
, colorama
, fetchPypi
, minikerberos
, pillow
, pyperclip
, pythonOlder
, tqdm
, unicrypto
, winsspi
}:
buildPythonPackage rec {
pname = "aardwolf";
version = "0.0.8";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-plz1D+Lr5rV8iJo7IUmuXfjxLvVxX9lgyxyYXUlPH0k=";
};
propagatedBuildInputs = [
arc4
asn1crypto
asn1tools
asysocks
colorama
minikerberos
pillow
pyperclip
tqdm
unicrypto
winsspi
];
# Module doesn't have tests
doCheck = false;
pythonImportsCheck = [
"aardwolf"
];
meta = with lib; {
description = "Asynchronous RDP protocol implementation";
homepage = "https://github.com/skelsec/aardwolf";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}
+2
View File
@@ -151,6 +151,8 @@ in {
aafigure = callPackage ../development/python-modules/aafigure { };
aardwolf = callPackage ../development/python-modules/aardwolf { };
abodepy = callPackage ../development/python-modules/abodepy { };
absl-py = callPackage ../development/python-modules/absl-py { };