depot/third_party/nixpkgs/pkgs/development/python-modules/pypykatz/default.nix
Default email b41113241d Project import generated by Copybara.
GitOrigin-RevId: ae1dc133ea5f1538d035af41e5ddbc2ebcb67b90
2022-09-22 14:36:57 +02:00

49 lines
818 B
Nix

{ lib
, aesedb
, aiosmb
, aiowinreg
, buildPythonPackage
, fetchPypi
, minidump
, minikerberos
, msldap
, pythonOlder
, winsspi
}:
buildPythonPackage rec {
pname = "pypykatz";
version = "0.6.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-GbIWxYCVmNXUwn6W4a/cl1XOTbWkpBemKcmjOvnXER4=";
};
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 ];
};
}