pyblosxom: new package

This commit is contained in:
Michael Phillips 2015-05-13 21:09:52 -05:00
parent be03eefc9c
commit 9579fecd28

View file

@ -9073,6 +9073,28 @@ let
};
};
pyblosxom = buildPythonPackage rec {
name = "pyblosxom-${version}";
disabled = isPy3k;
version = "1.5.3";
# FAIL:test_generate_entry and test_time
# both tests fail due to time issue that doesn't seem to matter in practice
doCheck = false;
src = pkgs.fetchurl {
url = "https://github.com/pyblosxom/pyblosxom/archive/v${version}.tar.gz";
sha256 = "0de9a7418f4e6d1c45acecf1e77f61c8f96f036ce034493ac67124626fd0d885";
};
propagatedBuildInputs = with self; [ pygments markdown ];
meta = with stdenv.lib; {
homepage = "http://pyblosxom.github.io";
description = "File-based blogging engine";
license = licenses.mit;
};
};
pycapnp = buildPythonPackage rec {
name = "pycapnp-0.5.1";
disabled = isPyPy || isPy3k;