ptex: remove python2 as dependency

No longer required as of 2.4.1
This commit is contained in:
Armeen Mahdian 2022-04-21 10:02:37 -05:00
parent 09a02d7e65
commit 99efa0e292

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, zlib, python2, cmake, pkg-config }:
{ lib, stdenv, fetchFromGitHub, zlib, cmake, pkg-config }:
stdenv.mkDerivation rec
{
@ -15,7 +15,7 @@ stdenv.mkDerivation rec
outputs = [ "bin" "dev" "out" "lib" ];
nativeBuildInputs = [ cmake ];
buildInputs = [ zlib python2 pkg-config ];
buildInputs = [ zlib pkg-config ];
# Can be removed in the next release
# https://github.com/wdas/ptex/pull/42