blob: 5b6d433f752dd117f2e0491fa99830b0087f3840 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{
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 = {
description = "Create a random file/directory tree/structure in python fortesting purposes";
homepage = "https://pypi.org/project/RandomFileTree/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ twitchy0 ];
};
}
|