python3Packages.python-djvulibre: fix eval

Changed files
+7 -5
pkgs
development
python-modules
python-djvulibre
+7 -5
pkgs/development/python-modules/python-djvulibre/default.nix
···
{
lib,
-
python3Packages,
+
buildPythonPackage,
fetchFromGitHub,
+
cython,
djvulibre,
+
setuptools,
ghostscript_headless,
pkg-config,
unittestCheckHook,
}:
-
python3Packages.buildPythonPackage rec {
+
buildPythonPackage rec {
pname = "python-djvulibre";
version = "0.9.3";
pyproject = true;
···
};
build-system = [
-
python3Packages.cython
+
cython
djvulibre
ghostscript_headless
pkg-config
-
python3Packages.setuptools
+
setuptools
];
-
dependencies = with python3Packages; [
+
dependencies = [
djvulibre
ghostscript_headless
];