blob: 11c002df24bf0eaf87f7be3dde09b073c53ea8ae (
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
43
44
45
46
47
48
49
50
|
{
lib,
beautifultable,
buildPythonPackage,
click-default-group,
click,
fetchFromGitHub,
humanize,
keyring,
requests,
setuptools,
unittestCheckHook,
}:
buildPythonPackage rec {
pname = "mwdblib";
version = "4.6.0";
pyproject = true;
src = fetchFromGitHub {
owner = "CERT-Polska";
repo = "mwdblib";
tag = "v${version}";
hash = "sha256-1oz//6rQiuV/WAv+6qs12ULPhB5nmf7ntcHSAKnRT8E=";
};
build-system = [ setuptools ];
dependencies = [
beautifultable
click
click-default-group
humanize
keyring
requests
];
nativeCheckInputs = [ unittestCheckHook ];
pythonImportsCheck = [ "mwdblib" ];
meta = {
description = "Python client library for the mwdb service";
homepage = "https://github.com/CERT-Polska/mwdblib";
changelog = "https://github.com/CERT-Polska/mwdblib/releases/tag/${src.tag}";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "mwdb";
};
}
|