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/pypykatz/default.nix

49 lines
818 B

{ lib
, aesedb
, aiosmb
, aiowinreg
, buildPythonPackage
, fetchPypi
, minidump
, minikerberos
, msldap
, pythonOlder
, winsspi
}:
buildPythonPackage rec {
pname = "pypykatz";
version = "0.5.7";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-G+dbP+xtRH8dIU70HbimRJV+e/yYlo2ds5OAIzUcydY=";
};
propagatedBuildInputs = [
aesedb
aiosmb
aiowinreg
minikerberos
msldap
winsspi
minidump
];
# Project doesn't have tests
doCheck = false;
pythonImportsCheck = [
"pypykatz"
];
meta = with lib; {
description = "Mimikatz implementation in Python";
homepage = "https://github.com/skelsec/pypykatz";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}