2016-09-25 21:36:30 +01:00
|
|
|
{stdenv, fetchurl, buildPythonPackage, antlr, isPy3k}:
|
2008-11-05 20:03:00 +00:00
|
|
|
|
2016-09-25 21:36:30 +01:00
|
|
|
buildPythonPackage rec {
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "PyStringTemplate";
|
2008-11-05 20:03:00 +00:00
|
|
|
version = "3.2b1";
|
2016-05-04 11:08:35 +01:00
|
|
|
|
2008-11-05 20:03:00 +00:00
|
|
|
src = fetchurl {
|
2018-06-23 14:27:58 +01:00
|
|
|
url = "http://www.stringtemplate.org/download/${pname}-${version}.tar.gz";
|
2008-11-05 20:03:00 +00:00
|
|
|
sha256 = "0lbib0l8c1q7i1j610rwcdagymr1idahrql4dkgnm5rzyg2vk3ml";
|
|
|
|
};
|
2016-05-04 11:08:35 +01:00
|
|
|
|
2016-09-25 21:36:30 +01:00
|
|
|
propagatedBuildInputs = [ antlr ];
|
2016-05-04 11:08:35 +01:00
|
|
|
|
2016-09-25 21:36:30 +01:00
|
|
|
disabled = isPy3k;
|
2016-05-04 11:08:35 +01:00
|
|
|
|
2016-09-25 21:36:30 +01:00
|
|
|
# No tests included in archive
|
|
|
|
doCheck = false;
|
2016-05-04 11:08:35 +01:00
|
|
|
|
|
|
|
meta = {
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://www.stringtemplate.org/;
|
2016-05-04 11:08:35 +01:00
|
|
|
description = "Text Templating Library";
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2016-05-04 11:08:35 +01:00
|
|
|
};
|
2008-11-05 20:03:00 +00:00
|
|
|
}
|