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 #268619 from tweag/lib-descriptions
[NixPkgs.git]
/
pkgs
/
development
/
python-modules
/
lzallright
/
tests.nix
blob
1093fc3c79e981293637df674bcbbcf468aa79ad
1
{ lzallright, buildPythonPackage, pytestCheckHook }:
2
3
buildPythonPackage {
4
inherit (lzallright) version src;
5
pname = "lzallright-tests";
6
format = "other";
7
8
dontBuild = true;
9
dontInstall = true;
10
11
nativeCheckInputs = [
12
lzallright
13
pytestCheckHook
14
];
15
}