2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi,
|
2021-06-03 11:09:11 +01:00
|
|
|
m2r, setuptools-scm, six, attrs }:
|
2018-06-23 14:27:58 +01:00
|
|
|
|
2017-04-26 13:31:25 +01:00
|
|
|
buildPythonPackage rec {
|
2020-06-06 07:46:58 +01:00
|
|
|
version = "20.2.0";
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "Automat";
|
2017-04-26 13:31:25 +01:00
|
|
|
|
2018-06-23 14:27:58 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-06 07:46:58 +01:00
|
|
|
sha256 = "7979803c74610e11ef0c0d68a2942b152df52da55336e0c9d58daf1831cbdf33";
|
2017-04-26 13:31:25 +01:00
|
|
|
};
|
|
|
|
|
2021-06-03 11:09:11 +01:00
|
|
|
buildInputs = [ m2r setuptools-scm ];
|
2017-04-26 13:31:25 +01:00
|
|
|
propagatedBuildInputs = [ six attrs ];
|
|
|
|
|
|
|
|
# Some tests require twisetd, but twisted requires Automat to build.
|
|
|
|
# this creates a circular dependency.
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/glyph/Automat";
|
2017-04-26 13:31:25 +01:00
|
|
|
description = "Self-service finite-state machines for the programmer on the go";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ ];
|
|
|
|
};
|
|
|
|
}
|