2017-07-26 17:52:13 +02:00
|
|
|
{ stdenv, lib, buildPythonPackage, fetchFromGitHub, augeas, cffi }:
|
|
|
|
buildPythonPackage rec {
|
2017-11-09 12:26:09 +01:00
|
|
|
pname = "augeas";
|
2020-02-09 18:08:14 +01:00
|
|
|
version = "1.1.0";
|
2017-07-26 17:52:13 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "hercules-team";
|
|
|
|
repo = "python-augeas";
|
|
|
|
rev = "v${version}";
|
2020-02-09 18:08:14 +01:00
|
|
|
sha256 = "12q52ilcx059rn544x3712xq6myn99niz131l0fs3xx67456pajh";
|
2017-07-26 17:52:13 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
# TODO: not very nice!
|
|
|
|
postPatch =
|
|
|
|
let libname = if stdenv.isDarwin then "libaugeas.dylib" else "libaugeas.so";
|
|
|
|
in
|
|
|
|
''
|
|
|
|
substituteInPlace augeas/ffi.py \
|
|
|
|
--replace 'ffi.dlopen("augeas")' \
|
|
|
|
'ffi.dlopen("${lib.makeLibraryPath [augeas]}/${libname}")'
|
|
|
|
'';
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ cffi augeas ];
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Pure python bindings for augeas";
|
|
|
|
homepage = https://github.com/hercules-team/python-augeas;
|
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|