summary refs log tree commit diff
path: root/pkgs/development/python-modules/flit-core/tests.nix
blob: 0fd13e80cb12546c51896840140869eba1bb8b80 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ buildPythonPackage
, flit
, flit-core
, pytestCheckHook
, testpath
}:

buildPythonPackage rec {
  pname = "flit-core";
  inherit (flit-core) version;

  src = flit-core.testsout;

  dontBuild = true;
  dontInstall = true;

  checkInputs = [
    flit
    pytestCheckHook
    testpath
  ];
}