nixpkgs/pkgs/development/python-modules/stringtemplate/default.nix
Frederik Rietdijk 941ee1ba6e pystringtemplate -> pythonPackages.pystringtemplate
and use buildPythonPackage
2016-09-25 22:41:26 +02:00

25 lines
573 B
Nix

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