3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.automat: init at 0.5.0

This commit is contained in:
Lancelot SIX 2017-04-26 14:31:25 +02:00
parent 63fd2c7e62
commit b1d16c731f
No known key found for this signature in database
GPG key ID: 02E1542BA66FB047
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ stdenv, buildPythonPackage, fetchurl,
m2r, setuptools_scm, six, attrs }:
buildPythonPackage rec {
name = "Automat-${version}";
version = "0.5.0";
src = fetchurl {
url = "mirror://pypi/A/Automat/${name}.tar.gz";
sha256 = "1hnpknkqnc2m900kkzrzx9l6g5dy5dassrdj9pn34x1pcdkyr2a8";
};
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 = [ ];
};
}

View file

@ -192,6 +192,8 @@ in {
asn1crypto = callPackage ../development/python-modules/asn1crypto { };
automat = callPackage ../development/python-modules/automat { };
# packages defined elsewhere
bap = callPackage ../development/python-modules/bap {