blob: 8c131e146944e66de14b57865162512e9b45d4f9 (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
{ lib
, attrs
, buildPythonPackage
, fetchPypi
, future
, pytestCheckHook
, python-dateutil
, pythonOlder
, pyyaml
}:
buildPythonPackage rec {
pname = "related";
version = "0.7.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-IqmbqAW6PubN9GBXrMs5Je4u1XkgLl9camSGNrlrFJA=";
};
propagatedBuildInputs = [
attrs
future
python-dateutil
pyyaml
];
nativeCheckInputs = [
pytestCheckHook
];
postPatch = ''
# Remove outdated setup.cfg
rm setup.cfg
substituteInPlace setup.py \
--replace "'pytest-runner'," ""
'';
disabledTests = [
# Source tarball doesn't contains all needed files
"test_compose_from_yml"
"test_yaml_roundtrip_with_empty_values"
"test_compose_from_yml"
"test_store_data_from_json"
];
pythonImportsCheck = [
"related"
];
meta = with lib; {
description = "Nested Object Models in Python";
homepage = "https://github.com/genomoncology/related";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}
|