3
0
Fork 0
forked from mirrors/nixpkgs

python3Packages.tomli: add downstream dependency tests

This commit is contained in:
Jonathan Ringer 2022-02-02 09:46:53 -08:00 committed by Jonathan Ringer
parent ce92a609bd
commit 48a98a84e0

View file

@ -3,6 +3,12 @@
, callPackage
, fetchFromGitHub
, flit-core
# important downstream dependencies
, flit
, black
, mypy
, setuptools-scm
}:
buildPythonPackage rec {
@ -41,6 +47,7 @@ buildPythonPackage rec {
passthru.tests = {
pytest = callPackage ./tests.nix { };
inherit flit black mypy setuptools-scm;
};
meta = with lib; {