mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
25 lines
577 B
Nix
25 lines
577 B
Nix
{stdenv, fetchurl, buildPythonPackage, antlr, isPy3k}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "PyStringTemplate";
|
|
version = "3.2b1";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.stringtemplate.org/download/${pname}-${version}.tar.gz";
|
|
sha256 = "0lbib0l8c1q7i1j610rwcdagymr1idahrql4dkgnm5rzyg2vk3ml";
|
|
};
|
|
|
|
propagatedBuildInputs = [ antlr ];
|
|
|
|
disabled = isPy3k;
|
|
|
|
# No tests included in archive
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
homepage = "https://www.stringtemplate.org/";
|
|
description = "Text Templating Library";
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|