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
ocamlPackages.hxd: 0.3.2 -> 0.3.3 (#364231)
[NixPkgs.git]
/
pkgs
/
development
/
python-modules
/
attrs
/
tests.nix
blob
d657ba1ffc5a42f07e6ad2c8da5adf5ab0720111
1
{
2
buildPythonPackage,
3
pytestCheckHook,
4
attrs,
5
hypothesis,
6
}:
7
8
buildPythonPackage {
9
pname = "attrs-tests";
10
inherit (attrs) version;
11
format = "other";
12
13
srcs = attrs.testout;
14
15
dontBuild = true;
16
dontInstall = true;
17
18
nativeCheckInputs = [
19
attrs
20
hypothesis
21
pytestCheckHook
22
];
23
}