Udiskie: update to 1.1.2
Amending to the last commit: added gettext dependency TODO: investigate Python3/gobject issues Closes #3720
This commit is contained in:
parent
f214d5394c
commit
a4a3503211
|
@ -10837,22 +10837,24 @@ let
|
||||||
};
|
};
|
||||||
|
|
||||||
udiskie = buildPythonPackage rec {
|
udiskie = buildPythonPackage rec {
|
||||||
name = "udiskie-0.8.0";
|
version = "1.1.2";
|
||||||
|
name = "udiskie-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/coldfix/udiskie/archive/0.8.0.tar.gz";
|
url = "https://github.com/coldfix/udiskie/archive/${version}.tar.gz";
|
||||||
sha256 = "0yzrnl7bq0dkcd3wh55kbf41c4dbh7dky0mqx0drvnpxlrvzhvp2";
|
sha256 = "07fyvwp4rga47ayfsmb79p2784sqrih0sglwnd9c4x6g63xgljvb";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with pythonPackages; [ pygtk pyyaml dbus notify pkgs.udisks2 ];
|
propagatedBuildInputs = with pythonPackages; [ pygtk pyyaml pygobject dbus notify pkgs.udisks2 pkgs.gettext ];
|
||||||
|
|
||||||
# tests require dbusmock
|
# tests require dbusmock
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Removable disk automounter for udisks.";
|
description = "Removable disk automounter for udisks";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
homepage = https://github.com/coldfix/udiskie;
|
homepage = https://github.com/coldfix/udiskie;
|
||||||
|
maintainers = [ maintainers.AndersonTorres ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue