aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/automat/default.nix
blob: 78a3259a287844276d0f2d28954e5aa7278d581b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, buildPythonPackage, fetchPypi,
  m2r, setuptools_scm, six, attrs }:

buildPythonPackage rec {
  version = "20.2.0";
  pname = "Automat";

  src = fetchPypi {
    inherit pname version;
    sha256 = "7979803c74610e11ef0c0d68a2942b152df52da55336e0c9d58daf1831cbdf33";
  };

  buildInputs = [ m2r setuptools_scm ];
  propagatedBuildInputs = [ six attrs ];

  # Some tests require twisetd, but twisted requires Automat to build.
  # this creates a circular dependency.
  doCheck = false;

  meta = with stdenv.lib; {
    homepage = "https://github.com/glyph/Automat";
    description = "Self-service finite-state machines for the programmer on the go";
    license = licenses.mit;
    maintainers = [ ];
  };
}