summary refs log tree commit diff
path: root/pkgs/development/python-modules/blivet
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2013-07-02 17:00:39 +0200
committeraszlig <aszlig@redmoonstudios.org>2013-07-08 14:27:42 +0200
commit231b182c365f547ddaee30a8dc2eb04aa52bad4c (patch)
tree3bab17524e846f04248ed96b2b09f4c15244e293 /pkgs/development/python-modules/blivet
parent5d06f7aa5ab32856dff4b40d309e81092eae70f5 (diff)
downloadnixpkgs-231b182c365f547ddaee30a8dc2eb04aa52bad4c.tar
nixpkgs-231b182c365f547ddaee30a8dc2eb04aa52bad4c.tar.gz
nixpkgs-231b182c365f547ddaee30a8dc2eb04aa52bad4c.tar.bz2
nixpkgs-231b182c365f547ddaee30a8dc2eb04aa52bad4c.tar.lz
nixpkgs-231b182c365f547ddaee30a8dc2eb04aa52bad4c.tar.xz
nixpkgs-231b182c365f547ddaee30a8dc2eb04aa52bad4c.tar.zst
nixpkgs-231b182c365f547ddaee30a8dc2eb04aa52bad4c.zip
python-blivet: Move into python-modules/blivet.
This is in preparation for adding overridable function attributes.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'pkgs/development/python-modules/blivet')
-rw-r--r--pkgs/development/python-modules/blivet/default.nix46
1 files changed, 46 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/blivet/default.nix b/pkgs/development/python-modules/blivet/default.nix
new file mode 100644
index 00000000000..00018893eea
--- /dev/null
+++ b/pkgs/development/python-modules/blivet/default.nix
@@ -0,0 +1,46 @@
+{ stdenv, fetchurl, buildPythonPackage, pykickstart, pyparted, pyblock
+, libselinux, cryptsetup, multipath_tools, lsof, utillinux, udev
+}:
+
+let
+  pyenable = { enablePython = true; };
+  selinuxWithPython = libselinux.override pyenable;
+  cryptsetupWithPython = cryptsetup.override pyenable;
+in buildPythonPackage rec {
+  name = "blivet-${version}";
+  version = "0.17-1";
+
+  src = fetchurl {
+    url = "https://git.fedorahosted.org/cgit/blivet.git/snapshot/"
+        + "${name}.tar.bz2";
+    sha256 = "0b28q539657mqif0mn5dfqcpqv7gbyszg83gf2fv6z7q6206rnx5";
+  };
+
+  postPatch = ''
+    sed -i -e '/find_library/,/find_library/ {
+      c libudev = "${udev}/lib/libudev.so.1"
+    }' blivet/pyudev.py
+    sed -i -e 's|"multipath"|"${multipath_tools}/sbin/multipath"|' \
+      blivet/devicelibs/mpath.py blivet/devices.py
+    sed -i -e '/"wipefs"/ {
+      s|wipefs|${utillinux}/sbin/wipefs|
+      s/-f/--force/
+    }' blivet/formats/__init__.py
+    sed -i -e 's|"lsof"|"${lsof}/bin/lsof"|' blivet/formats/fs.py
+    sed -i -r -e 's|"(u?mount)"|"${utillinux}/bin/\1"|' blivet/util.py
+    sed -i '/pvscan/s/, *"--cache"//' blivet/devicelibs/lvm.py
+  '';
+
+  propagatedBuildInputs = [
+    pykickstart pyparted pyblock udev selinuxWithPython cryptsetupWithPython
+  ];
+
+  # tests are currently _heavily_ broken upstream
+  doCheck = false;
+
+  meta = {
+    homepage = "https://fedoraproject.org/wiki/Blivet";
+    description = "Module for management of a system's storage configuration";
+    license = [ "GPLv2+" "LGPLv2.1+" ];
+  };
+}