2021-02-05 17:12:51 +00:00
|
|
|
{ lib
|
2022-01-13 20:06:32 +00:00
|
|
|
, stdenv
|
2020-04-24 23:36:52 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2022-04-15 01:41:22 +00:00
|
|
|
, flit-core
|
2021-06-28 23:13:55 +00:00
|
|
|
, pytestCheckHook
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "testpath";
|
2022-04-15 01:41:22 +00:00
|
|
|
version = "0.6.0";
|
|
|
|
format = "pyproject";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
2021-06-28 23:13:55 +00:00
|
|
|
inherit pname version;
|
2023-03-15 16:39:30 +00:00
|
|
|
hash = "sha256-LxuX5kQsAmgevgG9hPUxAop8rqGvOCUAD1I0XDAoXg8=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-04-15 01:41:22 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
flit-core
|
|
|
|
];
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [
|
2021-06-28 23:13:55 +00:00
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
2023-04-12 12:48:02 +00:00
|
|
|
# exe are only required when testpath is used on windows
|
|
|
|
# https://github.com/jupyter/testpath/blob/de8ca59539eb23b9781e55848b7d2646c8c61df9/testpath/commands.py#L128
|
|
|
|
preBuild = lib.optionalString (!stdenv.targetPlatform.isWindows) ''
|
|
|
|
rm testpath/cli-32.exe testpath/cli-64.exe
|
|
|
|
'';
|
|
|
|
|
2022-01-13 20:06:32 +00:00
|
|
|
preCheck = lib.optionalString stdenv.isDarwin ''
|
|
|
|
# Work around https://github.com/jupyter/testpath/issues/24
|
|
|
|
export TMPDIR="/tmp"
|
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Test utilities for code working with files and commands";
|
|
|
|
license = licenses.mit;
|
|
|
|
homepage = "https://github.com/jupyter/testpath";
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|