summary refs log tree commit diff
path: root/pkgs/development/python-modules/automat/default.nix
blob: 8a9f85b54fdd7b0fde94eb9821da4c63ddd5e77d (plain) (blame)
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 = "0.8.0";
  pname = "Automat";

  src = fetchPypi {
    inherit pname version;
    sha256 = "269a09dfb063a3b078983f4976d83f0a0d3e6e7aaf8e27d8df1095e09dc4a484";
  };

  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 = [ ];
  };
}