python3Packages.lima: init at 0.5

This commit is contained in:
Zhaofeng Li 2021-01-16 01:07:47 -08:00
parent 5b7551970d
commit 70fc42b449
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ lib, buildPythonPackage, fetchPypi, isPy3k, pytestCheckHook }:
buildPythonPackage rec {
pname = "lima";
version = "0.5";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "0qqj0053r77ppkcyyk2fhpaxjzsl1h98nf9clpny6cs66sdl241v";
};
checkInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Lightweight Marshalling of Python 3 Objects.";
homepage = "https://github.com/b6d/lima";
license = licenses.mit;
maintainers = with maintainers; [ zhaofengli ];
};
}

View file

@ -3817,6 +3817,8 @@ in {
lightparam = callPackage ../development/python-modules/lightparam { };
lima = callPackage ../development/python-modules/lima { };
limitlessled = callPackage ../development/python-modules/limitlessled { };
limits = callPackage ../development/python-modules/limits { };