33 lines
640 B
Nix
33 lines
640 B
Nix
{ lib
|
|
, stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "testpath";
|
|
version = "0.5.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "05z4s4d5i1ja16hiv4jhqv63fvg1a4vw77s0ay1sw11hrl5pmkqs";
|
|
};
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
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";
|
|
};
|
|
|
|
}
|