python313Packages.filesplit: init at 4.1.0 (#415441)

Co-authored-by: emaryn <emaryn@users.noreply.github.com>
This commit is contained in:
emaryn
2025-06-10 13:55:26 +00:00
committed by GitHub
co-authored by emaryn
parent 072ef51874
commit 613f1afbaa
2 changed files with 32 additions and 0 deletions
@@ -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 ];
};
}
+2
View File
@@ -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 { };