13 buildPythonPackage rec {
14 pname = "logical-unification";
16 format = "setuptools";
18 src = fetchFromGitHub {
19 owner = "pythological";
21 rev = "refs/tags/v${version}";
22 hash = "sha256-uznmlkREFONU1YoI/+mcfb+Yg30NinWvsMxTfHCXzOU=";
25 propagatedBuildInputs = [
34 pytest-benchmark # Needed for the `--benchmark-skip` flag
37 disabledTests = lib.optionals (pythonAtLeast "3.12") [
38 # Failed: DID NOT RAISE <class 'RecursionError'>
39 "test_reify_recursion_limit"
44 "--html=testing-report.html"
45 "--self-contained-html"
48 pythonImportsCheck = [ "unification" ];
51 description = "Straightforward unification in Python that's extensible via generic functions";
52 homepage = "https://github.com/pythological/unification";
53 changelog = "https://github.com/pythological/unification/releases";
54 license = licenses.bsd3;
55 maintainers = with maintainers; [ Etjean ];