lol

python3Packages.lima: init at 0.5

+23
+21
pkgs/development/python-modules/lima/default.nix
··· 1 + { lib, buildPythonPackage, fetchPypi, isPy3k, pytestCheckHook }: 2 + 3 + buildPythonPackage rec { 4 + pname = "lima"; 5 + version = "0.5"; 6 + disabled = !isPy3k; 7 + 8 + src = fetchPypi { 9 + inherit pname version; 10 + sha256 = "0qqj0053r77ppkcyyk2fhpaxjzsl1h98nf9clpny6cs66sdl241v"; 11 + }; 12 + 13 + checkInputs = [ pytestCheckHook ]; 14 + 15 + meta = with lib; { 16 + description = "Lightweight Marshalling of Python 3 Objects."; 17 + homepage = "https://github.com/b6d/lima"; 18 + license = licenses.mit; 19 + maintainers = with maintainers; [ zhaofengli ]; 20 + }; 21 + }
+2
pkgs/top-level/python-packages.nix
··· 3817 3817 3818 3818 lightparam = callPackage ../development/python-modules/lightparam { }; 3819 3819 3820 + lima = callPackage ../development/python-modules/lima { }; 3821 + 3820 3822 limitlessled = callPackage ../development/python-modules/limitlessled { }; 3821 3823 3822 3824 limits = callPackage ../development/python-modules/limits { };