2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi }:
|
2019-09-13 09:19:17 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
version = "0.2.4";
|
|
|
|
pname = "python-lzf";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "1l8m6vzwm1m8hn7ldw8j8r2b6r199k8z3q0wnhdyy4p68hahyhni";
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-09-13 09:19:17 +01:00
|
|
|
description = "liblzf python bindings";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/teepark/python-lzf";
|
2019-09-13 09:19:17 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|