Merge pull request #68631 from xtruder/pkgs/rdbtools/init

rdbtools: init at 0.1.14
This commit is contained in:
Jaka Hudoklin
2019-12-29 11:26:29 +00:00
committed by GitHub
4 changed files with 47 additions and 0 deletions
@@ -0,0 +1,18 @@
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
version = "0.2.4";
pname = "python-lzf";
src = fetchPypi {
inherit pname version;
sha256 = "1l8m6vzwm1m8hn7ldw8j8r2b6r199k8z3q0wnhdyy4p68hahyhni";
};
meta = with stdenv.lib; {
description = "liblzf python bindings";
homepage = https://github.com/teepark/python-lzf;
license = licenses.mit;
platforms = platforms.unix;
};
}