randomfiletree: init at 1.2.0

This commit is contained in:
twitchy0 2024-04-05 21:42:27 -04:00
parent a73d982d25
commit e0cd940759
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ 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 ];
};
}

View File

@ -12667,6 +12667,8 @@ self: super: with self; {
random2 = callPackage ../development/python-modules/random2 { };
randomfiletree = callPackage ../development/python-modules/randomfiletree { };
range-typed-integers = callPackage ../development/python-modules/range-typed-integers { };
rangehttpserver = callPackage ../development/python-modules/rangehttpserver { };