python3Packages.logical-unification: init at 0.4.5

This commit is contained in:
Etienne JEAN 2022-02-14 15:53:30 +01:00
parent be5974a48c
commit 7984685707
2 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,48 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, toolz
, multipledispatch
, pytestCheckHook
, pytest-html
, pytest-benchmark
}:
buildPythonPackage rec {
pname = "logical-unification";
version = "0.4.5";
src = fetchFromGitHub {
owner = "pythological";
repo = "unification";
rev = "707cf4a39e27a4a8bf06b7e7dce7223085574e65";
sha256 = "sha256-3wqO0pWWFRQeoGNvbSDdLNYFyjNnv+O++F7+vTBUJoI=";
};
propagatedBuildInputs = [
toolz
multipledispatch
];
checkInputs = [
pytestCheckHook
pytest-html
pytest-benchmark # Needed for the `--benchmark-skip` flag
];
pytestFlagsArray = [
"--benchmark-skip"
"--html=testing-report.html"
"--self-contained-html"
];
pythonImportsCheck = [ "unification" ];
meta = with lib; {
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 = licenses.bsd3;
maintainers = with maintainers; [ Etjean ];
};
}

View File

@ -4759,6 +4759,8 @@ in {
logfury = callPackage ../development/python-modules/logfury { };
logical-unification = callPackage ../development/python-modules/logical-unification { };
logilab_astng = callPackage ../development/python-modules/logilab_astng { };
logilab_common = callPackage ../development/python-modules/logilab/common.nix { };