mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-08 21:24:03 +00:00
Merge pull request #301977 from twitchy0/randomfiletree
randomfiletree: init at 1.2.0
This commit is contained in:
commit
c150967c30
26
pkgs/development/python-modules/randomfiletree/default.nix
Normal file
26
pkgs/development/python-modules/randomfiletree/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user