Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
642 B
Nix
Raw Normal View History

{
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; [ ];
};
}