python3Packages.pip: add pip-tools to tests

This commit is contained in:
Jonathan Ringer 2022-01-07 09:45:54 -08:00 committed by Jonathan Ringer
parent 03a272b278
commit fb9297fc3a

View file

@ -7,6 +7,9 @@
, virtualenv
, pretend
, pytest
# coupled downsteam dependencies
, pip-tools
}:
buildPythonPackage rec {
@ -32,6 +35,8 @@ buildPythonPackage rec {
# Pip wants pytest, but tests are not distributed
doCheck = false;
passthru.tests = { inherit pip-tools; };
meta = {
description = "The PyPA recommended tool for installing Python packages";
license = with lib.licenses; [ mit ];