Commit 7e7f626d authored by mxmlnkn's avatar mxmlnkn
Browse files

python3Packages.ratarmountcore: init at 0.6.0

parent 25c3d229
Loading
Loading
Loading
Loading
+48 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchgit
, pythonOlder
, pytestCheckHook
, indexed-bzip2
, indexed-gzip
, indexed-zstd
, python-xz
, rapidgzip
, rarfile
, zstandard     # Python bindings
, zstd          # System tool
}:

buildPythonPackage rec {
  pname = "ratarmountcore";
  version = "0.6.0";

  disabled = pythonOlder "3.6";

  src = fetchgit {
    url = "https://github.com/mxmlnkn/ratarmount";
    # The revision is hardcoded for now to fix problems with the tests, which are not worthy of a new release
    # tag because releases do not officially contain tests. On the next release, use the commented revision,
    # which points to a release tag, instead.
    #rev = "core-v${version}";
    rev = "ea43572dfbac4770a27ef2169f72ff73ee4a4ae9";
    hash = "sha256-sPApM5OW+UbujFXHSL4ptMaegajz7FNtXz/KftTlw+U=";
    fetchSubmodules = true;
  };

  sourceRoot = "${src.name}/core";

  propagatedBuildInputs = [ indexed-gzip indexed-bzip2 indexed-zstd python-xz rapidgzip rarfile ];

  pythonImportsCheck = [ "ratarmountcore" ];

  nativeCheckInputs = [ pytestCheckHook zstandard zstd ];

  meta = with lib; {
    description = "Library for accessing archives by way of indexing";
    homepage = "https://github.com/mxmlnkn/ratarmount/tree/master/core";
    license = licenses.mit;
    maintainers = with lib.maintainers; [ mxmlnkn ];
    platforms = platforms.all;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -11011,6 +11011,8 @@ self: super: with self; {

  rasterio = callPackage ../development/python-modules/rasterio { };

  ratarmountcore = callPackage ../development/python-modules/ratarmountcore { inherit (pkgs) zstd; };

  ratelim = callPackage ../development/python-modules/ratelim { };

  ratelimit = callPackage ../development/python-modules/ratelimit { };