3
0
Fork 0
forked from mirrors/nixpkgs

python-packages: Add pyblock in version 0.52.

This is needed for blivet in order to work with dmraid and lvm.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2013-06-24 09:16:04 +02:00
parent 8c46977941
commit e7c4273cb9
No known key found for this signature in database
GPG key ID: D0EBD0EC8C2DC961

View file

@ -3445,6 +3445,35 @@ pythonPackages = python.modules // rec {
});
pyblock = stdenv.mkDerivation rec {
name = "python-pyblock-${version}";
version = "0.52-1";
src = fetchurl {
url = "https://git.fedorahosted.org/cgit/pyblock.git/snapshot/"
+ "pyblock-${version}.tar.bz2";
sha256 = "1jj5hd1dcr8xx00rg3jynsf4ak88wwr5id3fmb0qf6zvim1whj7l";
};
postPatch = ''
sed -i -e 's|/usr/include/python|${python}/include/python|' \
-e 's/-Werror *//' -e 's|/usr/|'"$out"'/|' Makefile
'';
buildInputs = [ python pkgs.lvm2 pkgs.dmraid ];
makeFlags = [
"USESELINUX=0"
"SITELIB=$(out)/lib/${python.libPrefix}/site-packages"
];
meta = {
description = "Interface for working with block devices";
license = stdenv.lib.licenses.gpl2Plus;
};
};
pycryptopp = buildPythonPackage (rec {
name = "pycryptopp-0.5.29";