pythonPackages.pysvn: Fix python import check

pysvn
This commit is contained in:
Sandro Jäckel 2020-12-30 21:37:18 +01:00
parent 2d9c1ba1a4
commit 5b3e787c4e
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -60,11 +60,11 @@ buildPythonPackage rec {
sed -i "s|/bin/bash|${bash}/bin/bash|" ../Tests/test-*.sh
make -C ../Tests
${python.interpreter} -c "import pysvn"
runHook postCheck
'';
pythonImportCheck = [ "pysvn" ];
installPhase = ''
dest=$(toPythonPath $out)/pysvn
mkdir -p $dest
@ -80,5 +80,4 @@ buildPythonPackage rec {
homepage = "http://pysvn.tigris.org/";
license = licenses.asl20;
};
}