1{ buildPythonPackage
2, flit
3, flit-core
4, pytestCheckHook
5, testpath
6}:
7
8buildPythonPackage rec {
9 pname = "flit-core";
10 inherit (flit-core) version;
11
12 src = flit-core.testsout;
13
14 dontBuild = true;
15 dontInstall = true;
16
17 checkInputs = [
18 flit
19 pytestCheckHook
20 testpath
21 ];
22}