blob: 28d93bf62b346795681fcad4671a99b7cc1c3fb1 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
karton-core,
malduck,
}:
buildPythonPackage rec {
pname = "karton-config-extractor";
version = "2.3.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "CERT-Polska";
repo = "karton-config-extractor";
tag = "v${version}";
hash = "sha256-a9wSw25q0blgAkR2s3brW7jGHJSLjx1yXjMmhMJNUFk=";
};
propagatedBuildInputs = [
karton-core
malduck
];
pythonRelaxDeps = [ "malduck" ];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "karton.config_extractor" ];
meta = {
description = "Static configuration extractor for the Karton framework";
mainProgram = "karton-config-extractor";
homepage = "https://github.com/CERT-Polska/karton-config-extractor";
changelog = "https://github.com/CERT-Polska/karton-config-extractor/releases/tag/${src.tag}";
license = with lib.licenses; [ bsd3 ];
maintainers = with lib.maintainers; [ fab ];
};
}
|