mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-30 17:43:42 +00:00
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
|
|
];
|
|
}
|