blob: c3e5436de9699dcb2d8b60c0c7dd8aa25bdc0bcd (
plain) (
blame)
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
, fetchPypi
, pytestCheckHook
, python-json-logger
, setuptools
, setuptools-scm
}:
buildPythonPackage rec {
pname = "daiquiri";
version = "3.2.5.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-Xy6G1vyovDjR6a36YFGE32/eo3AuB8oC0Wqj0AQ7Luw=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [
python-json-logger
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "daiquiri" ];
meta = with lib; {
description = "Library to configure Python logging easily";
homepage = "https://github.com/Mergifyio/daiquiri";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}
|