587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
26 lines
613 B
Nix
26 lines
613 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "randomfiletree";
|
|
version = "1.2.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
pname = "RandomFileTree";
|
|
inherit version;
|
|
hash = "sha256-OpLhLsvwk9xrP8FAXGkDDtMts6ikpx8ockvTR/TEmvw=";
|
|
};
|
|
|
|
pythonImportsCheck = [ "randomfiletree" ];
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Create a random file/directory tree/structure in python fortesting purposes";
|
|
homepage = "https://pypi.org/project/RandomFileTree/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ twitchy0 ];
|
|
};
|
|
}
|