
This treewide change targets Python packages that specifies pytest flags with pytestFlagsArray, and whose flags cannot be consructed by other pytestCheckHook-honoured arguments. Use the __structuredAttrs-agnostic argument pytestFlags instead of the deprecated pytestFlagsArray. For flags with option arguments, join each flag and their option argument into a single command-line argument following POSIX Utility Argument Syntax[1] for easier overriding (remove/replace). Examples: * [ "-W" "ignore:message:WarningClass" ] -> [ "-Wignore:message:WarningClass" ] * [ "--reruns" "3" ] -> [ "--reruns=3" ] [1]: https://pubs.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap12.html
56 lines
1.0 KiB
Nix
56 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
toolz,
|
|
cons,
|
|
multipledispatch,
|
|
etuples,
|
|
logical-unification,
|
|
py,
|
|
pytestCheckHook,
|
|
pytest-html,
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
pname = "minikanren";
|
|
version = "1.0.3";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pythological";
|
|
repo = "kanren";
|
|
rev = "5aa9b1734cbb3fe072a7c72b46e1b72a174d28ac";
|
|
hash = "sha256-daAtREgm91634Q0mc0/WZivDiyZHC7TIRoGRo8hMnGE=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
toolz
|
|
cons
|
|
multipledispatch
|
|
etuples
|
|
logical-unification
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
py
|
|
pytestCheckHook
|
|
pytest-html
|
|
];
|
|
|
|
pytestFlags = [
|
|
"--html=testing-report.html"
|
|
"--self-contained-html"
|
|
];
|
|
|
|
pythonImportsCheck = [ "kanren" ];
|
|
|
|
meta = with lib; {
|
|
description = "Relational programming in Python";
|
|
homepage = "https://github.com/pythological/kanren";
|
|
changelog = "https://github.com/pythological/kanren/releases";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ Etjean ];
|
|
};
|
|
}
|