nixpkgs/pkgs/development/python-modules/aesedb/default.nix
2022-04-15 19:27:18 +02:00

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 ];
};
}