depot/third_party/nixpkgs/pkgs/development/python-modules/pypykatz/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

50 lines
935 B
Nix

{
lib,
aesedb,
aiosmb,
aiowinreg,
buildPythonPackage,
fetchPypi,
minidump,
minikerberos,
msldap,
pythonOlder,
winsspi,
}:
buildPythonPackage rec {
pname = "pypykatz";
version = "0.6.10";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-M0LjYIa8leoMs/hDWM2nLqH8R00ZAL6uOCyXHA/0AJY=";
};
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";
mainProgram = "pypykatz";
homepage = "https://github.com/skelsec/pypykatz";
changelog = "https://github.com/skelsec/pypykatz/releases/tag/${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}