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