2025-06-10 21:55:26 +08:00
|
|
|
{
|
|
|
|
|
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;
|
2025-07-17 07:59:54 +08:00
|
|
|
maintainers = with lib.maintainers; [ ];
|
2025-06-10 21:55:26 +08:00
|
|
|
};
|
|
|
|
|
}
|