22 lines
292 B
Nix
22 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
|
|
];
|
|
}
|