blob: 87f27046f8aab3dc3b61cbdda4bd470bc3c6524b (
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
42
43
44
45
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
pytestCheckHook,
pyyaml,
ruamel-yaml,
setuptools,
}:
buildPythonPackage rec {
pname = "yamale";
version = "5.2.1";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "23andMe";
repo = "yamale";
rev = "refs/tags/${version}";
hash = "sha256-iiiQAZ050FintRSV3l2zfikTNmphhJgrn+4tUHORiSk=";
};
build-system = [ setuptools ];
dependencies = [
pyyaml
ruamel-yaml
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "yamale" ];
meta = with lib; {
description = "Schema and validator for YAML";
homepage = "https://github.com/23andMe/Yamale";
changelog = "https://github.com/23andMe/Yamale/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ rtburns-jpl ];
mainProgram = "yamale";
};
}
|