packagekit: python3 attr. -> unversioned python

This commit is contained in:
Tobias Geerinckx-Rice 2015-08-20 17:26:16 +02:00
parent 1f10b44d3e
commit 4ec87513b6

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, intltool, glib, pkgconfig, polkit, python3, sqlite }:
{ stdenv, fetchurl, intltool, glib, pkgconfig, polkit, python, sqlite }:
let version = "1.0.7"; in
stdenv.mkDerivation {
@ -9,7 +9,7 @@ stdenv.mkDerivation {
url = "https://www.freedesktop.org/software/PackageKit/releases/PackageKit-${version}.tar.xz";
};
buildInputs = [ glib polkit python3 ];
buildInputs = [ glib polkit python ];
propagatedBuildInputs = [ sqlite ];
nativeBuildInputs = [ intltool pkgconfig ];