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
biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git]
/
pkgs
/
development
/
python-modules
/
pluggy
/
tests.nix
blob
8eec02011202e09bf9473f6d724a66f47a165ced
1
{
2
buildPythonPackage,
3
pluggy,
4
pytestCheckHook,
5
}:
6
7
buildPythonPackage {
8
pname = "pluggy-tests";
9
inherit (pluggy) version;
10
format = "other";
11
12
inherit (pluggy) src;
13
14
dontBuild = true;
15
dontInstall = true;
16
17
nativeCheckInputs = [
18
pluggy
19
pytestCheckHook
20
];
21
}