blob: 749c975f784fa2cda3e4fa91541008dac3b22f02 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonAtLeast,
toolz,
multipledispatch,
py,
pytestCheckHook,
pytest-html,
pytest-benchmark,
}:
buildPythonPackage rec {
pname = "logical-unification";
version = "0.4.6";
format = "setuptools";
src = fetchFromGitHub {
owner = "pythological";
repo = "unification";
tag = "v${version}";
hash = "sha256-uznmlkREFONU1YoI/+mcfb+Yg30NinWvsMxTfHCXzOU=";
};
propagatedBuildInputs = [
toolz
multipledispatch
];
nativeCheckInputs = [
py
pytestCheckHook
pytest-html
pytest-benchmark # Needed for the `--benchmark-skip` flag
];
disabledTests = lib.optionals (pythonAtLeast "3.12") [
# Failed: DID NOT RAISE <class 'RecursionError'>
"test_reify_recursion_limit"
];
pytestFlags = [
"--benchmark-skip"
"--html=testing-report.html"
"--self-contained-html"
];
pythonImportsCheck = [ "unification" ];
meta = {
description = "Straightforward unification in Python that's extensible via generic functions";
homepage = "https://github.com/pythological/unification";
changelog = "https://github.com/pythological/unification/releases";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ Etjean ];
};
}
|