nixpkgs/pkgs/development/python-modules/flit-core/tests.nix

23 lines
292 B
Nix

{ 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
];
}