b15799824d
Diff: https://github.com/skelsec/aesedb/compare/refs/tags/0.1.3...0.1.4 Changelog: https://github.com/skelsec/aesedb/releases/tag/0.1.4
53 lines
952 B
Nix
53 lines
952 B
Nix
{ lib
|
|
, aiowinreg
|
|
, buildPythonPackage
|
|
, colorama
|
|
, fetchFromGitHub
|
|
, pycryptodomex
|
|
, pythonOlder
|
|
, setuptools
|
|
, tqdm
|
|
, unicrypto
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aesedb";
|
|
version = "0.1.4";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "skelsec";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-QqPy68rWabRY0Y98W+odwP/10gMtLAQ0Ah2+ZLkqHPI=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
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";
|
|
changelog = "https://github.com/skelsec/aesedb/releases/tag/${version}";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|