depot/third_party/nixpkgs/pkgs/development/python-modules/pypykatz/default.nix
Default email 9c6ee729d6 Project import generated by Copybara.
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
2023-07-15 19:15:38 +02:00

50 lines
897 B
Nix

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