14 lines
188 B
Bash
14 lines
188 B
Bash
|
source $stdenv/setup
|
||
|
|
||
|
buildPhase=myBuildPhase
|
||
|
myBuildPhase() {
|
||
|
true
|
||
|
}
|
||
|
|
||
|
installPhase=myInstallPhase
|
||
|
myInstallPhase() {
|
||
|
python setup.py install --prefix=$out || fail
|
||
|
}
|
||
|
|
||
|
genericBuild
|