zeitgeist: fix build

This commit is contained in:
Domen Kožar 2014-08-27 20:53:02 +02:00
parent e75cf5d166
commit 0a1c255bc9
2 changed files with 19 additions and 2 deletions

View file

@ -3,10 +3,11 @@
, gtk3, json_glib, librdf_raptor2, pythonPackages, dbus_glib }:
stdenv.mkDerivation rec {
name = "zeitgeist-0.0.14";
version = "0.9.15";
name = "zeitgeist-${version}";
src = fetchurl {
url = "https://github.com/seiflotfy/zeitgeist/archive/v0.9.15.tar.gz";
url = "https://github.com/seiflotfy/zeitgeist/archive/v${version}.tar.gz";
sha256 = "07pnc7kmjpd0ncm32z6s3ny5p4zl52v9lld0n0f8sp6cw87k12p0";
};

View file

@ -7067,12 +7067,28 @@ rec {
# error: invalid command 'test'
doCheck = false;
propagatedBuildInputs = [ isodate ];
meta = {
description = "RDFLib is a Python library for working with RDF, a simple yet powerful language for representing information.";
homepage = http://www.rdflib.net/;
};
});
isodate = buildPythonPackage rec {
name = "isodate-0.5.0";
src = fetchurl {
url = "https://pypi.python.org/packages/source/i/isodate/${name}.tar.gz";
md5 = "9a267e9327feb3d021cae26002ba6e0e";
};
meta = with stdenv.lib; {
description = "ISO 8601 date/time parser";
homepage = http://cheeseshop.python.org/pypi/isodate;
};
};
robotframework = buildPythonPackage rec {