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

27 lines
714 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi,
2017-04-26 13:31:25 +01:00
m2r, setuptools_scm, six, attrs }:
2017-04-26 13:31:25 +01:00
buildPythonPackage rec {
2019-10-24 07:47:24 +01:00
version = "0.8.0";
pname = "Automat";
2017-04-26 13:31:25 +01:00
src = fetchPypi {
inherit pname version;
2019-10-24 07:47:24 +01:00
sha256 = "269a09dfb063a3b078983f4976d83f0a0d3e6e7aaf8e27d8df1095e09dc4a484";
2017-04-26 13:31:25 +01:00
};
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 = [ ];
};
}