blob: e8b5d63afe004f45e4dc315a866a348153ec5f2f (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
python,
pyyaml,
}:
buildPythonPackage rec {
pname = "yacs";
version = "0.1.8";
format = "setuptools";
src = fetchFromGitHub {
owner = "rbgirshick";
repo = "yacs";
rev = "v${version}";
hash = "sha256-nO8FL4tTkfTthXYXxXORLieFwvn780DDxfrxC9EUUJ0=";
};
propagatedBuildInputs = [ pyyaml ];
pythonImportsCheck = [ "yacs" ];
checkPhase = ''
${python.interpreter} yacs/tests.py
'';
meta = {
description = "Yet Another Configuration System";
homepage = "https://github.com/rbgirshick/yacs";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ lucasew ];
};
}
|