nixpkgs/pkgs/development/python-modules/flit-core/tests.nix
2023-07-14 14:09:17 +02:00

23 lines
294 B
Nix

{ buildPythonPackage
, flit
, flit-core
, pytestCheckHook
, testpath
}:
buildPythonPackage {
pname = "flit-core";
inherit (flit-core) version;
src = flit-core.testsout;
dontBuild = true;
dontInstall = true;
nativeCheckInputs = [
flit
pytestCheckHook
testpath
];
}