Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / lima / default.nix
blob6174a4d764108d57e7f9755d12b6e2b576fb1c56
1 { lib, buildPythonPackage, fetchPypi, isPy3k, pytestCheckHook }:
3 buildPythonPackage rec {
4   pname = "lima";
5   version = "0.5";
6   disabled = !isPy3k;
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "0qqj0053r77ppkcyyk2fhpaxjzsl1h98nf9clpny6cs66sdl241v";
11   };
13   nativeCheckInputs = [ pytestCheckHook ];
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   };