mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 05:04:00 +00:00
f36ed3c453
fixes #223776
45 lines
1018 B
Nix
45 lines
1018 B
Nix
{ lib
|
|
, stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, flit-core
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "testpath";
|
|
version = "0.6.0";
|
|
format = "pyproject";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-LxuX5kQsAmgevgG9hPUxAop8rqGvOCUAD1I0XDAoXg8=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
flit-core
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
# 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
|
|
'';
|
|
|
|
preCheck = lib.optionalString stdenv.isDarwin ''
|
|
# Work around https://github.com/jupyter/testpath/issues/24
|
|
export TMPDIR="/tmp"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Test utilities for code working with files and commands";
|
|
license = licenses.mit;
|
|
homepage = "https://github.com/jupyter/testpath";
|
|
};
|
|
|
|
}
|