tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.testpath: enable tests
Martin Weinelt
4 years ago
d0e77643
136f6574
+5
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
testpath
default.nix
+5
pkgs/development/python-modules/testpath/default.nix
reviewed
···
1
1
{ lib
2
2
, buildPythonPackage
3
3
, fetchPypi
4
4
+
, pytestCheckHook
4
5
}:
5
6
6
7
buildPythonPackage rec {
···
11
12
inherit pname version;
12
13
sha256 = "05z4s4d5i1ja16hiv4jhqv63fvg1a4vw77s0ay1sw11hrl5pmkqs";
13
14
};
15
15
+
16
16
+
checkInputs = [
17
17
+
pytestCheckHook
18
18
+
];
14
19
15
20
meta = with lib; {
16
21
description = "Test utilities for code working with files and commands";