Disable unused phases & fix formatting

This commit is contained in:
Reinout Meliesie 2025-03-02 19:52:08 +01:00
parent e4b21d95b2
commit 0536ffc1a8
Signed by: zedfrigg
GPG key ID: 3AFCC06481308BC6
4 changed files with 26 additions and 12 deletions

View file

@ -16,6 +16,10 @@ mkDerivation {
hash = "sha256-RT3fF2oMsf0klUwMBJ02Dgdt2rsoB7A3SjiuyVuYU7A=" ; hash = "sha256-RT3fF2oMsf0klUwMBJ02Dgdt2rsoB7A3SjiuyVuYU7A=" ;
} ; } ;
dontPatch = true ;
dontConfigure = true ;
dontBuild = true ;
installPhase = '' installPhase = ''
runHook preInstall runHook preInstall

View file

@ -8,20 +8,24 @@ with stdenv ;
mkDerivation { mkDerivation {
pname = "python-django-imagekit" ; pname = "python-django-imagekit" ;
version = "2024-07-22-4cbbc52" ; version = "2024-07-22-4cbbc52" ;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "matthewwithanm" ; owner = "matthewwithanm" ;
repo = "django-imagekit" ; repo = "django-imagekit" ;
rev = "4cbbc52fabfd99a6306cdbb8ab2602bb0a0190a9" ; rev = "4cbbc52fabfd99a6306cdbb8ab2602bb0a0190a9" ;
hash = "sha256-QYWhXh404JNAZN7kXYhsPQpFpyBA/MehxJOxdDKX0Mc=" ; hash = "sha256-QYWhXh404JNAZN7kXYhsPQpFpyBA/MehxJOxdDKX0Mc=" ;
} ; } ;
dontPatch = true ;
dontConfigure = true ;
dontBuild = true
installPhase = '' installPhase = ''
runHook preInstall runHook preInstall
mkdir -p $out/lib/python3.11/site-packages mkdir -p $out/lib/python3.11/site-packages
cp -r $src/imagekit $out/lib/python3.11/site-packages/ cp -r $src/imagekit $out/lib/python3.11/site-packages/
runHook postInstall runHook postInstall
'' ; '' ;
} }

View file

@ -8,7 +8,7 @@ with stdenv ;
mkDerivation { mkDerivation {
pname = "python-django-pgtrigger" ; pname = "python-django-pgtrigger" ;
version = "2024-12-24-fa2155e" ; version = "2024-12-24-fa2155e" ;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "ambitioneng" ; owner = "ambitioneng" ;
repo = "django-pgtrigger" ; repo = "django-pgtrigger" ;
@ -16,14 +16,16 @@ mkDerivation {
hash = "sha256-K+JjAermtSiVUnPbtyabpQN2ghnRIkwt329Ytp8zeQk=" ; hash = "sha256-K+JjAermtSiVUnPbtyabpQN2ghnRIkwt329Ytp8zeQk=" ;
} ; } ;
dontPatch = true ;
dontConfigure = true ;
dontBuild = true ; dontBuild = true ;
installPhase = '' installPhase = ''
runHook preInstall runHook preInstall
mkdir -p $out/lib/python3.11/site-packages mkdir -p $out/lib/python3.11/site-packages
cp -r $src/pgtrigger $out/lib/python3.11/site-packages/ cp -r $src/pgtrigger $out/lib/python3.11/site-packages/
runHook postInstall runHook postInstall
'' ; '' ;
} }

View file

@ -8,20 +8,24 @@ with stdenv ;
mkDerivation { mkDerivation {
pname = "python-django-sass-processor" ; pname = "python-django-sass-processor" ;
version = "2024-05-29-0d8cb67" ; version = "2024-05-29-0d8cb67" ;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "jrief" ; owner = "jrief" ;
repo = "django-sass-processor" ; repo = "django-sass-processor" ;
rev = "0d8cb672aab9ecc45e8492794530ca847ce24547" ; rev = "0d8cb672aab9ecc45e8492794530ca847ce24547" ;
hash = "sha256-Z3UzzkHlMNiyhj7YPRDgAX0437BywPG/waNSPoNiKLo=" ; hash = "sha256-Z3UzzkHlMNiyhj7YPRDgAX0437BywPG/waNSPoNiKLo=" ;
} ; } ;
dontPatch = true ;
dontConfigure = true ;
dontBuild = true ;
installPhase = '' installPhase = ''
runHook preInstall runHook preInstall
mkdir -p $out/lib/python3.11/site-packages mkdir -p $out/lib/python3.11/site-packages
cp -r $src/sass_processor $out/lib/python3.11/site-packages/ cp -r $src/sass_processor $out/lib/python3.11/site-packages/
runHook postInstall runHook postInstall
'' ; '' ;
} }