Merge pull request #301977 from twitchy0/randomfiletree

randomfiletree: init at 1.2.0
This commit is contained in:
Aleksana 2024-04-08 00:33:26 +08:00 committed by GitHub
commit c150967c30
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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

@ -12832,6 +12832,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 { };