3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #201910 from prusnak/heatshrink2

python3Packages.heatshrink2: init at 0.11.0
This commit is contained in:
Pavol Rusnak 2022-11-21 22:43:29 +01:00 committed by GitHub
commit 2254223523
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ buildPythonPackage
, fetchFromGitHub
, lib
}:
buildPythonPackage rec {
pname = "heatshrink2";
version = "0.11.0";
src = fetchFromGitHub {
owner = "eerimoq";
repo = "pyheatshrink";
rev = version;
fetchSubmodules = true;
sha256 = "sha256-P3IofGbW4x+erGCyxIPvD9aNHIJ/GjjWgno4n95SQoQ=";
};
pythonImportsCheck = [ "heatshrink2" ];
meta = with lib; {
description = "Compression using the Heatshrink algorithm in Python 3.";
homepage = "https://github.com/eerimoq/pyheatshrink";
license = licenses.isc;
maintainers = with maintainers; [ prusnak ];
};
}

View file

@ -4155,6 +4155,8 @@ self: super: with self; {
heapdict = callPackage ../development/python-modules/heapdict { };
heatshrink2 = callPackage ../development/python-modules/heatshrink2 { };
heatzypy = callPackage ../development/python-modules/heatzypy { };
helpdev = callPackage ../development/python-modules/helpdev { };