mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
51 lines
897 B
Nix
51 lines
897 B
Nix
{ lib
|
|
, aesedb
|
|
, aiosmb
|
|
, aiowinreg
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, minidump
|
|
, minikerberos
|
|
, msldap
|
|
, pythonOlder
|
|
, winsspi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pypykatz";
|
|
version = "0.6.9";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-Xni2cYI+ByTFSDvuWHDU97KljwMe3aT7P+VIir6ktks=";
|
|
};
|
|
|
|
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";
|
|
changelog = "https://github.com/skelsec/pypykatz/releases/tag/${version}";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|