inflate64: init at 1.0.1

Co-authored-by: ByteSudoer <ByteSudoer@users.noreply.github.com>
Co-authored-by: PopeRigby <poperigby@mailbox.org>

Peter Kling 68503547 5c65fda1

+49
+47
pkgs/development/python-modules/inflate64/default.nix
···
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitea, 5 + setuptools, 6 + setuptools-scm, 7 + pytestCheckHook, 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "inflate64"; 12 + version = "1.0.1"; 13 + pyproject = true; 14 + 15 + src = fetchFromGitea { 16 + domain = "codeberg.org"; 17 + owner = "miurahr"; 18 + repo = "inflate64"; 19 + tag = "v${version}"; 20 + hash = "sha256-deFx8NMbGLP51CdNvmZ25LQ5FLPBb1PB3QhGhIfTMfc="; 21 + }; 22 + 23 + build-system = [ 24 + setuptools 25 + setuptools-scm 26 + ]; 27 + 28 + nativeCheckInputs = [ 29 + pytestCheckHook 30 + ]; 31 + 32 + pythonImportsCheck = [ 33 + "inflate64" 34 + ]; 35 + 36 + meta = { 37 + description = "Compress and decompress with Enhanced Deflate compression algorithm"; 38 + homepage = "https://codeberg.org/miurahr/inflate64"; 39 + changelog = "https://codeberg.org/miurahr/inflate64/src/tag/v${version}/docs/Changelog.rst#v${version}"; 40 + license = lib.licenses.gpl2Plus; 41 + maintainers = with lib.maintainers; [ 42 + pitkling 43 + PopeRigby 44 + ]; 45 + }; 46 + 47 + }
+2
pkgs/top-level/python-packages.nix
··· 6380 6381 infinity = callPackage ../development/python-modules/infinity { }; 6382 6383 inflect = callPackage ../development/python-modules/inflect { }; 6384 6385 inflection = callPackage ../development/python-modules/inflection { };
··· 6380 6381 infinity = callPackage ../development/python-modules/infinity { }; 6382 6383 + inflate64 = callPackage ../development/python-modules/inflate64 { }; 6384 + 6385 inflect = callPackage ../development/python-modules/inflect { }; 6386 6387 inflection = callPackage ../development/python-modules/inflection { };