2016-12-03 12:04:52 +00:00
|
|
|
# This function provides specific bits for building a flit-based Python package.
|
|
|
|
|
2017-02-01 13:26:27 +00:00
|
|
|
{ python
|
|
|
|
, flit
|
2016-12-03 12:04:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
{ ... } @ attrs:
|
|
|
|
|
|
|
|
attrs // {
|
|
|
|
buildInputs = [ flit ];
|
|
|
|
buildPhase = attrs.buildPhase or ''
|
|
|
|
runHook preBuild
|
|
|
|
flit wheel
|
|
|
|
runHook postBuild
|
|
|
|
'';
|
|
|
|
|
2017-02-01 13:26:27 +00:00
|
|
|
# Flit packages, like setuptools packages, might have tests.
|
|
|
|
installCheckPhase = attrs.checkPhase or ''
|
|
|
|
${python.interpreter} -m unittest discover
|
|
|
|
'';
|
|
|
|
doCheck = attrs.doCheck or true;
|
|
|
|
}
|