mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
46 lines
758 B
Nix
46 lines
758 B
Nix
{ 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 ];
|
|
};
|
|
}
|