about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/flit-core/tests.nix
blob: 49d6ac89fce66014340a697eaac8dbba3104e9fd (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 {
  pname = "flit-core";
  inherit (flit-core) version;

  src = flit-core.testsout;

  dontBuild = true;
  dontInstall = true;

  nativeCheckInputs = [
    flit
    pytestCheckHook
    testpath
  ];
}