linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pyblosxom / default.nix
blob77e47eb983642c21922d4dd217de1afe672e0303
1 { lib
2 , buildPythonPackage
3 , fetchurl
4 , pygments
5 , markdown
6 , isPy3k
7 }:
9 buildPythonPackage rec {
10   pname = "pyblosxom";
11   version = "1.5.3";
12   disabled = isPy3k;
14   src = fetchurl {
15     url = "https://github.com/pyblosxom/pyblosxom/archive/v${version}.tar.gz";
16     sha256 = "0de9a7418f4e6d1c45acecf1e77f61c8f96f036ce034493ac67124626fd0d885";
17   };
19   propagatedBuildInputs = [ pygments markdown ];
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;
25   meta = with lib; {
26     homepage = "http://pyblosxom.github.io";
27     description = "File-based blogging engine";
28     license = licenses.mit;
29   };