2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-28 15:24:29 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "testpath";
|
2021-06-18 22:47:40 +01:00
|
|
|
version = "0.5.0";
|
2018-10-28 15:24:29 +00:00
|
|
|
format = "wheel";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version format;
|
2021-06-18 22:47:40 +01:00
|
|
|
sha256 = "8044f9a0bab6567fc644a3593164e872543bb44225b0e24846e2c89237937589";
|
2018-10-28 15:24:29 +00:00
|
|
|
};
|
|
|
|
|
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
|
|
|
};
|
|
|
|
|
|
|
|
}
|