Files
nixpkgs/pkgs/development/python-modules/automat/default.nix
Yueh-Shun Li 624897829b treewide: modernize Python package pytest flags
Use `(enabled|disabled)(TestPaths|TestMarks|Tests)` and `pytestFlags`
instead of the `__structuredAttrs`-incompatible `pytestFlagsArray`.
2025-07-15 03:00:08 +08:00

56 lines
1.0 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
attrs,
pytest-benchmark,
pytestCheckHook,
setuptools-scm,
six,
}:
let
automat = buildPythonPackage rec {
version = "24.8.1";
format = "pyproject";
pname = "automat";
src = fetchPypi {
inherit pname version;
hash = "sha256-s0Inz2P2MluK0jme3ngGdQg+Q5sgwyPTdjc9juYwbYg=";
};
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [
six
attrs
];
nativeCheckInputs = [
pytest-benchmark
pytestCheckHook
];
pytestFlags = [ "--benchmark-disable" ];
# escape infinite recursion with twisted
doCheck = false;
passthru.tests = {
check = automat.overridePythonAttrs (_: {
doCheck = true;
});
};
meta = with lib; {
homepage = "https://github.com/glyph/Automat";
description = "Self-service finite-state machines for the programmer on the go";
mainProgram = "automat-visualize";
license = licenses.mit;
maintainers = [ ];
};
};
in
automat