depot/third_party/nixpkgs/pkgs/development/python-modules/edlib/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

35 lines
570 B
Nix

{
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" ];
}