11 buildPythonPackage rec {
14 format = "setuptools";
16 src = fetchFromGitHub {
17 owner = "hercules-team";
18 repo = "python-augeas";
20 hash = "sha256-Lq8ckra3sqN38zo1d5JsEq6U5TtLKRmqysoWNwR9J9A=";
23 nativeBuildInputs = [ pkg-config ];
25 buildInputs = [ augeas pkgs.libxml2 ];
27 propagatedBuildInputs = [ cffi ];
29 nativeCheckInputs = [ unittestCheckHook ];
31 pythonImportsCheck = [ "augeas" ];
34 changelog = "https://github.com/hercules-team/python-augeas/releases/tag/v${version}";
35 description = "Pure python bindings for augeas";
36 homepage = "https://github.com/hercules-team/python-augeas";
37 license = licenses.lgpl2Plus;
38 platforms = platforms.unix;