6b999f3c42
Did not test all packages. Likely we'll have some breakage.
27 lines
768 B
Nix
27 lines
768 B
Nix
{ stdenv, buildPythonPackage, fetchurl,
|
|
m2r, setuptools_scm, six, attrs }:
|
|
buildPythonPackage rec {
|
|
version = "0.6.0";
|
|
pname = "Automat";
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://pypi/A/Automat/${name}.tar.gz";
|
|
sha256 = "3c1fd04ecf08ac87b4dd3feae409542e9bf7827257097b2b6ed5692f69d6f6a8";
|
|
};
|
|
|
|
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 = [ ];
|
|
};
|
|
}
|