mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-31 22:51:22 +00:00
udiskie: add version 0.8.0.
This commit is contained in:
parent
a44fbeeaa4
commit
ca092d7b01
@ -9187,6 +9187,26 @@ rec {
|
||||
};
|
||||
};
|
||||
|
||||
udiskie = buildPythonPackage rec {
|
||||
name = "udiskie-0.8.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/coldfix/udiskie/archive/0.8.0.tar.gz";
|
||||
sha256 = "0yzrnl7bq0dkcd3wh55kbf41c4dbh7dky0mqx0drvnpxlrvzhvp2";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with pythonPackages; [ pygtk pyyaml dbus notify pkgs.udisks2 ];
|
||||
|
||||
# tests require dbusmock
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Removable disk automounter for udisks.";
|
||||
license = licenses.mit;
|
||||
homepage = https://github.com/coldfix/udiskie;
|
||||
};
|
||||
};
|
||||
|
||||
# python2.7 specific packages
|
||||
} // optionalAttrs isPy27 (
|
||||
with pythonPackages;
|
||||
|
Loading…
Reference in New Issue
Block a user