about summary refs log tree commit diff
path: root/pkgs/development/python-modules/lima/default.nix
blob: 76a47923b7795c14fed25e240e8aadf17d8c6787 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
  lib,
  buildPythonPackage,
  fetchPypi,
  isPy3k,
  pytestCheckHook,
}:

buildPythonPackage rec {
  pname = "lima";
  version = "0.5";
  format = "setuptools";
  disabled = !isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "0qqj0053r77ppkcyyk2fhpaxjzsl1h98nf9clpny6cs66sdl241v";
  };

  nativeCheckInputs = [ pytestCheckHook ];

  meta = with lib; {
    description = "Lightweight Marshalling of Python 3 Objects";
    homepage = "https://github.com/b6d/lima";
    license = licenses.mit;
    maintainers = with maintainers; [ zhaofengli ];
  };
}