blob: b4075202f51d542f70999e75b133f38c7fcf805e (
plain) (
blame)
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 = 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 ];
};
}
|