python3Packages.pip: add pip-tools to tests
This commit is contained in:
parent
03a272b278
commit
fb9297fc3a
1 changed files with 5 additions and 0 deletions
|
@ -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 ];
|
||||||
|
|
Loading…
Reference in a new issue