Loading pkgs/development/python-modules/filesplit/default.nix 0 → 100644 +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 ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading Loading
pkgs/development/python-modules/filesplit/default.nix 0 → 100644 +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 ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading