about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/stringtemplate/default.nix
blob: c70cac59920e0f2d6bf6289626d99a7323b9a4b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{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;
  };
}