about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/multi_key_dict/default.nix
blob: f76cde9bec537bd73f229eac48a7e64169f05658 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, stdenv
, 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;
  };

}