1{ lib
2, buildPythonPackage
3, fetchurl
4, pygments
5, markdown
6, isPy3k
7}:
8
9buildPythonPackage rec {
10 pname = "pyblosxom";
11 version = "1.5.3";
12 disabled = isPy3k;
13
14 src = fetchurl {
15 url = "https://github.com/pyblosxom/pyblosxom/archive/v${version}.tar.gz";
16 sha256 = "0de9a7418f4e6d1c45acecf1e77f61c8f96f036ce034493ac67124626fd0d885";
17 };
18
19 propagatedBuildInputs = [ pygments markdown ];
20
21 # FAIL:test_generate_entry and test_time
22 # both tests fail due to time issue that doesn't seem to matter in practice
23 doCheck = false;
24
25 meta = with lib; {
26 homepage = "http://pyblosxom.github.io";
27 description = "File-based blogging engine";
28 license = licenses.mit;
29 };
30
31}