blob: d48f763b5543adac8bd85d2c1faa57ad5fa99e60 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
pytestCheckHook,
}:
buildPythonPackage (finalAttrs: {
pname = "braq";
version = "0.0.12";
pyproject = true;
src = fetchPypi {
inherit (finalAttrs) pname version;
hash = "sha256-UdrlG4Y8u6LNN9oWPfBrfcUSSQTSwmuSvaVMG95m10s=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "braq" ];
meta = {
description = "Section-based human-readable data format";
homepage = "https://github.com/pyrustic/braq";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
})
|