2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-28 15:24:29 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2021-06-19 01:19:05 +01:00
|
|
|
, pytestCheckHook
|
2018-10-28 15:24:29 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "testpath";
|
2021-06-18 22:47:40 +01:00
|
|
|
version = "0.5.0";
|
2018-10-28 15:24:29 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
2021-06-19 00:46:01 +01:00
|
|
|
inherit pname version;
|
|
|
|
sha256 = "05z4s4d5i1ja16hiv4jhqv63fvg1a4vw77s0ay1sw11hrl5pmkqs";
|
2018-10-28 15:24:29 +00:00
|
|
|
};
|
|
|
|
|
2021-06-19 01:19:05 +01:00
|
|
|
checkInputs = [
|
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-10-28 15:24:29 +00:00
|
|
|
description = "Test utilities for code working with files and commands";
|
|
|
|
license = licenses.mit;
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/jupyter/testpath";
|
2018-10-28 15:24:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|