My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/aardwolf/default.nix

57 lines
920 B

{ 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 ];
};
}