1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 21:50:55 +00:00

pythonPackages.nixpart: use checkInputs

This commit is contained in:
Jan Malakhovski 2018-08-08 21:34:25 +00:00
parent 7739f79ff3
commit fd056d838e

View file

@ -13,8 +13,7 @@ stdenv.mkDerivation rec {
++ stdenv.lib.optional (readline != null) readline
++ stdenv.lib.optional (gettext != null) gettext
++ stdenv.lib.optional (lvm2 != null) lvm2
++ stdenv.lib.optional (hurd != null) hurd
++ stdenv.lib.optional doCheck check;
++ stdenv.lib.optional (hurd != null) hurd;
configureFlags =
(if (readline != null)
@ -24,11 +23,7 @@ stdenv.mkDerivation rec {
++ stdenv.lib.optional enableStatic "--enable-static";
doCheck = true;
preCheck =
stdenv.lib.optionalString doCheck
# The `t0400-loop-clobber-infloop.sh' test wants `mkswap'.
"export PATH=\"${utillinux}/sbin:$PATH\"";
checkInputs = [ check utillinux ];
meta = {
description = "Create, destroy, resize, check, and copy partitions";