nixpkgs/pkgs/development/python-modules/automat/default.nix

27 lines
707 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi,
m2r, setuptools-scm, six, attrs }:
2017-04-26 13:31:25 +01:00
buildPythonPackage rec {
2020-06-06 07:46:58 +01:00
version = "20.2.0";
pname = "Automat";
2017-04-26 13:31:25 +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
};
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;
meta = with lib; {
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 = [ ];
};
}