pythonPackages.python-lzf: init at 0.2.4

This commit is contained in:
Jaka Hudoklin 2019-09-13 10:19:17 +02:00 committed by Jaka Hudoklin
parent c2ae05d597
commit 11b52e4046
No known key found for this signature in database
GPG key ID: D1F18234B07BD6E2
2 changed files with 20 additions and 0 deletions

View file

@ -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;
};
}

View file

@ -2888,6 +2888,8 @@ in {
inherit (pkgs) meson pkgconfig;
};
python-lzf = callPackage ../development/python-modules/python-lzf { };
pyramid = callPackage ../development/python-modules/pyramid { };
pyramid_beaker = callPackage ../development/python-modules/pyramid_beaker { };