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

buildPythonPackage rec {
  pname = "dictionaries";
  version = "0.0.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1jx2ph509sk4l7spslz16y8l6xn97d13nspn4ds2lxn5ward9ihy";
  };

  buildInputs = [ six ];

  meta = {
    description = "Dict implementations with attribute access";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.MostAwesomeDude ];
  };
}