Files
nixpkgs/pkgs/development/python-modules/automat/default.nix
T
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

50 lines
929 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, attrs
, pytest-benchmark
, pytestCheckHook
, setuptools-scm
, six
}:
let automat = buildPythonPackage rec {
version = "22.10.0";
format = "setuptools";
pname = "automat";
src = fetchPypi {
pname = "Automat";
inherit version;
hash = "sha256-5WvrhO2tGdzBHTDo2biV913ute9elrhKRnBms7hLsE4=";
};
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
six
attrs
];
nativeCheckInputs = [
pytest-benchmark
pytestCheckHook
];
# 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";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}; in automat