1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-21 08:59:20 +03:00
nixpkgs/pkgs/development/python-modules/flit-core/tests.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
292 B
Nix
Raw Normal View History

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