Unverified Commit 613f1afb authored by emaryn's avatar emaryn Committed by GitHub
Browse files

python313Packages.filesplit: init at 4.1.0 (#415441)

parent 072ef518
Loading
Loading
Loading
Loading
+30 −0
Original line number Diff line number Diff line
{
  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 −0
Original line number Diff line number Diff line
@@ -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 { };