fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
36 lines
577 B
Nix
36 lines
577 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
pythonOlder,
|
|
edlib,
|
|
cython,
|
|
python,
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
inherit (edlib) pname src meta;
|
|
version = "1.3.9";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
sourceRoot = "${edlib.src.name}/bindings/python";
|
|
|
|
preBuild = ''
|
|
ln -s ${edlib.src}/edlib .
|
|
'';
|
|
|
|
EDLIB_OMIT_README_RST = 1;
|
|
EDLIB_USE_CYTHON = 1;
|
|
|
|
nativeBuildInputs = [ cython ];
|
|
buildInputs = [ edlib ];
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
${python.interpreter} test.py
|
|
runHook postCheck
|
|
'';
|
|
|
|
pythonImportsCheck = [ "edlib" ];
|
|
}
|