1{ lib
2, buildPythonPackage
3, fetchPypi
4, pytestCheckHook
5}:
6
7buildPythonPackage rec {
8 pname = "testpath";
9 version = "0.5.0";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "05z4s4d5i1ja16hiv4jhqv63fvg1a4vw77s0ay1sw11hrl5pmkqs";
14 };
15
16 checkInputs = [
17 pytestCheckHook
18 ];
19
20 meta = with lib; {
21 description = "Test utilities for code working with files and commands";
22 license = licenses.mit;
23 homepage = "https://github.com/jupyter/testpath";
24 };
25
26}