summary refs log tree commit diff
path: root/pkgs/development/python-modules/multi_key_dict/default.nix
blob: cb539e4dd90f6feec93f789acedb8de85fc94d5c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "multi_key_dict";
  version = "2.0.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "17lkx4rf4waglwbhc31aak0f28c63zl3gx5k5i1iq2m3gb0xxsyy";
  };

  meta = with lib; {
    description = "multi_key_dict";
    homepage = "https://github.com/formiaczek/multi_key_dict";
    license = licenses.mit;
  };

}