Skip to content

Commit

Permalink
pyzstd: init at 0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ByteSudoer committed Jul 3, 2024
1 parent 68888a7 commit ff09010
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions pkgs/development/python-modules/pyzstd/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{ lib
, buildPythonPackage
, fetchFromGitHub

, setuptools
}:

buildPythonPackage rec {
pname = "pyzstd";
version = "0.16.0";

format = "pyproject";

src = fetchFromGitHub {
repo = "pyzstd";
owner = "Rogdham";
rev = "${version}";
fetchSubmodules = true;
hash = "sha256-//SeXs65Qcrbdyj3Ilk8XYUIgpwTej0Eaxv711g+3m8=";
};

build-system = [
setuptools
];

pythonImportsCheck = [ "pyzstd" ];

meta = with lib; {
homepage = "https://github.com/Rogdham/pyzstd";
description = "Python bindings to Zstandard (zstd) compression library";
license = licenses.bsd3;
maintainers = with maintainers; [ ByteSudoer ];
};
}

0 comments on commit ff09010

Please sign in to comment.