blob: 61ecb8ceaf9d271fdec6d0963044881faad1ff87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
prompt-toolkit,
setuptools,
winacl,
}:
buildPythonPackage rec {
pname = "aiowinreg";
version = "0.0.13";
pyproject = true;
src = fetchFromGitHub {
owner = "skelsec";
repo = "aiowinreg";
tag = version;
hash = "sha256-vY5SrGTFH/xsv9k2WciE0xNx9r3W53sxxLGXFX34EuE=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
prompt-toolkit
winacl
];
# Project doesn't have tests
doCheck = false;
pythonImportsCheck = [ "aiowinreg" ];
meta = {
description = "Python module to parse the registry hive";
homepage = "https://github.com/skelsec/aiowinreg";
changelog = "https://github.com/skelsec/aiowinreg/releases/tag/${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "awinreg";
};
}
|