Merge pull request #168807 from fabaff/bump-pypykatz
python3Packages.pypykatz: 0.5.2 -> 0.5.6
This commit is contained in:
commit
a5d9883384
45
pkgs/development/python-modules/aesedb/default.nix
Normal file
45
pkgs/development/python-modules/aesedb/default.nix
Normal file
@ -0,0 +1,45 @@
|
||||
{ lib
|
||||
, aiowinreg
|
||||
, buildPythonPackage
|
||||
, colorama
|
||||
, fetchPypi
|
||||
, pycryptodomex
|
||||
, pythonOlder
|
||||
, tqdm
|
||||
, unicrypto
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "aesedb";
|
||||
version = "0.0.5";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-2m4VxqTD9zvUpZ1O8/SBprAzG4vUX4z3LthMpP5Hc8g=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aiowinreg
|
||||
colorama
|
||||
pycryptodomex
|
||||
tqdm
|
||||
unicrypto
|
||||
];
|
||||
|
||||
# Module has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"aesedb"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Parser for JET databases";
|
||||
homepage = "https://github.com/skelsec/aesedb";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{ lib
|
||||
, aesedb
|
||||
, aiosmb
|
||||
, aiowinreg
|
||||
, buildPythonPackage
|
||||
@ -6,19 +7,24 @@
|
||||
, minidump
|
||||
, minikerberos
|
||||
, msldap
|
||||
, pythonOlder
|
||||
, winsspi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pypykatz";
|
||||
version = "0.5.2";
|
||||
version = "0.5.6";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1lyvypi1g4l9fq1f9q05bdn6vq8y5y9ghmb6ziqdycr0lxn7lfdd";
|
||||
hash = "sha256-iuLQfdRNxy6Z+7sYGG+dSHlxicOPtNOdB/VNLyZjRsY=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aesedb
|
||||
aiosmb
|
||||
aiowinreg
|
||||
minikerberos
|
||||
@ -29,7 +35,10 @@ buildPythonPackage rec {
|
||||
|
||||
# Project doesn't have tests
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "pypykatz" ];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pypykatz"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Mimikatz implementation in Python";
|
||||
|
@ -209,6 +209,8 @@ in {
|
||||
|
||||
aesara = callPackage ../development/python-modules/aesara { };
|
||||
|
||||
aesedb = callPackage ../development/python-modules/aesedb { };
|
||||
|
||||
afdko = callPackage ../development/python-modules/afdko { };
|
||||
|
||||
affine = callPackage ../development/python-modules/affine { };
|
||||
|
Loading…
Reference in New Issue
Block a user