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