forked from mirrors/nixpkgs
23 lines
292 B
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
|
||
|
];
|
||
|
}
|