moved pysqlite into PYTHON MODULES section
svn path=/nixpkgs/trunk/; revision=12964
This commit is contained in:
21
pkgs/development/python-modules/pysqlite/builder.sh
Normal file
21
pkgs/development/python-modules/pysqlite/builder.sh
Normal file
@@ -0,0 +1,21 @@
|
||||
source $stdenv/setup
|
||||
|
||||
configurePhase() {
|
||||
substituteInPlace "setup.cfg" \
|
||||
--replace "/usr/local/include" "$sqlite/include" \
|
||||
--replace "/usr/local/lib" "$sqlite/lib"
|
||||
cp setup.cfg /tmp
|
||||
}
|
||||
configurePhase=configurePhase
|
||||
|
||||
buildPhase() {
|
||||
$python/bin/python setup.py build
|
||||
}
|
||||
buildPhase=buildPhase
|
||||
|
||||
installPhase() {
|
||||
$python/bin/python setup.py install --prefix=$out
|
||||
}
|
||||
installPhase=installPhase
|
||||
|
||||
genericBuild
|
||||
Reference in New Issue
Block a user