nixpkgs/pkgs/development/python-modules/logical-unification/default.nix
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

52 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, 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";
rev = "refs/tags/v${version}";
hash = "sha256-uznmlkREFONU1YoI/+mcfb+Yg30NinWvsMxTfHCXzOU=";
};
propagatedBuildInputs = [
toolz
multipledispatch
];
nativeCheckInputs = [
py
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 ];
};
}