mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
python3Packages.pypykatz: init at 0.3.15
This commit is contained in:
parent
4a286edf6b
commit
16b09e898b
40
pkgs/development/python-modules/pypykatz/default.nix
Normal file
40
pkgs/development/python-modules/pypykatz/default.nix
Normal file
@ -0,0 +1,40 @@
|
||||
{ lib
|
||||
, aiowinreg
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, minidump
|
||||
, minikerberos
|
||||
, msldap
|
||||
, winsspi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pypykatz";
|
||||
version = "0.3.15";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "skelsec";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "0bx2jdcfr1pdy3jgzg8fr5id9ffl2m1nc81dqhcplxdj8p214yri";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user