1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "randomfiletree";
9 version = "1.2.0";
10 format = "setuptools";
11
12 src = fetchPypi {
13 pname = "RandomFileTree";
14 inherit version;
15 hash = "sha256-OpLhLsvwk9xrP8FAXGkDDtMts6ikpx8ockvTR/TEmvw=";
16 };
17
18 pythonImportsCheck = [ "randomfiletree" ];
19 doCheck = false;
20
21 meta = with lib; {
22 description = "Create a random file/directory tree/structure in python fortesting purposes";
23 homepage = "https://pypi.org/project/RandomFileTree/";
24 license = licenses.mit;
25 maintainers = with maintainers; [ twitchy0 ];
26 };
27}