Files
nixpkgs/pkgs/development/python-modules/stringtemplate/default.nix
T

25 lines
573 B
Nix
Raw Normal View History

{stdenv, fetchurl, buildPythonPackage, antlr, isPy3k}:
buildPythonPackage rec {
name = "PyStringTemplate-${version}";
version = "3.2b1";
2016-05-04 10:08:35 +00:00
src = fetchurl {
url = "http://www.stringtemplate.org/download/${name}.tar.gz";
sha256 = "0lbib0l8c1q7i1j610rwcdagymr1idahrql4dkgnm5rzyg2vk3ml";
};
2016-05-04 10:08:35 +00:00
propagatedBuildInputs = [ antlr ];
2016-05-04 10:08:35 +00:00
disabled = isPy3k;
2016-05-04 10:08:35 +00:00
# No tests included in archive
doCheck = false;
2016-05-04 10:08:35 +00:00
meta = {
homepage = "http://www.stringtemplate.org/";
description = "Text Templating Library";
2016-08-02 20:50:55 +03:00
platforms = stdenv.lib.platforms.linux;
2016-05-04 10:08:35 +00:00
};
}