python3Packages.testpath: 0.5.0 -> 0.6.0

This commit is contained in:
Martin Weinelt 2022-03-02 22:42:28 +01:00
parent a1bad1b6ef
commit 59b412808f

View File

@ -2,18 +2,24 @@
, stdenv
, buildPythonPackage
, fetchPypi
, flit-core
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "testpath";
version = "0.5.0";
version = "0.6.0";
format = "pyproject";
src = fetchPypi {
inherit pname version;
sha256 = "05z4s4d5i1ja16hiv4jhqv63fvg1a4vw77s0ay1sw11hrl5pmkqs";
sha256 = "sha256-LxuX5kQsAmgevgG9hPUxAop8rqGvOCUAD1I0XDAoXg8=";
};
nativeBuildInputs = [
flit-core
];
checkInputs = [
pytestCheckHook
];