repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git]
/
pkgs
/
development
/
python-modules
/
pluggy
/
tests.nix
blob
dc6e16e7b2d7980d52cab560a4c0ad0ddf1cc915
1
{ buildPythonPackage
2
, pluggy
3
, pytestCheckHook
4
}:
5
6
buildPythonPackage {
7
pname = "pluggy-tests";
8
inherit (pluggy) version;
9
format = "other";
10
11
inherit (pluggy) src;
12
13
dontBuild = true;
14
dontInstall = true;
15
16
nativeCheckInputs = [
17
pluggy
18
pytestCheckHook
19
];
20
}