depot/third_party/nixpkgs/pkgs/development/python-modules/automat/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

54 lines
1 KiB
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";
mainProgram = "automat-visualize";
license = licenses.mit;
maintainers = [ ];
};
};
in
automat