blob: 12cdd3ac1d1528907507105acb2b72304f54b4b2 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pyyaml,
pytestCheckHook,
mock,
}:
buildPythonPackage rec {
pname = "helper";
version = "2.5.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "gmr";
repo = "helper";
rev = version;
sha256 = "0zypjv8rncvrsgl200v7d3bn08gs48dwqvgamfqv71h07cj6zngp";
};
propagatedBuildInputs = [ pyyaml ];
nativeCheckInputs = [
pytestCheckHook
mock
];
pythonImportsCheck = [
"helper"
"helper.config"
];
meta = {
description = "Development library for quickly writing configurable applications and daemons";
homepage = "https://helper.readthedocs.org/";
license = lib.licenses.bsd3;
};
}
|