python313Packages.filesplit: init at 4.1.0 (#415441)
Co-authored-by: emaryn <emaryn@users.noreply.github.com>
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "filesplit";
|
||||
version = "4.1.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ram-jayapalan";
|
||||
repo = "filesplit";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-QttXCK/IalnOVilWQaE0FYhFglQ1nXDLUX3nOFI5Vrc=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
pythonImportsCheck = [ "filesplit" ];
|
||||
|
||||
meta = {
|
||||
description = "Split file into multiple chunks based on the given size";
|
||||
homepage = "https://github.com/ram-jayapalan/filesplit";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ emaryn ];
|
||||
};
|
||||
}
|
||||
@@ -4989,6 +4989,8 @@ self: super: with self; {
|
||||
|
||||
files-to-prompt = callPackage ../development/python-modules/files-to-prompt { };
|
||||
|
||||
filesplit = callPackage ../development/python-modules/filesplit { };
|
||||
|
||||
filetype = callPackage ../development/python-modules/filetype { };
|
||||
|
||||
filterpy = callPackage ../development/python-modules/filterpy { };
|
||||
|
||||
Reference in New Issue
Block a user