mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
python3Packages.heatshrink2: init at 0.11.0
Co-Authored-By: Pavol Rusnak <pavol@rusnak.io>
This commit is contained in:
parent
adbe2f532c
commit
b8bcebad11
26
pkgs/development/python-modules/heatshrink2/default.nix
Normal file
26
pkgs/development/python-modules/heatshrink2/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -4151,6 +4151,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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user