Merge pull request #172975 from dotlambda/hg-commitsigs-interpreter

python3Packages.hg-commitsigs: use correct interpreter
This commit is contained in:
Jörg Thalheim 2022-05-14 06:43:45 +01:00 committed by GitHub
commit 0b1f00eebd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
{ lib
, fetchhg
, stdenv
, python3
, python
}:
stdenv.mkDerivation rec {
@ -20,9 +20,9 @@ stdenv.mkDerivation rec {
dontBuild = true;
installPhase = ''
mkdir -p $out/lib/${python3.libPrefix}/site-packages/hgext3rd/
mkdir -p $out/lib/${python.libPrefix}/site-packages/hgext3rd/
install -D $src/commitsigs.py \
$out/lib/${python3.libPrefix}/site-packages/hgext3rd/
$out/lib/${python.libPrefix}/site-packages/hgext3rd/
'';
meta = with lib; {