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

buildPythonPackage rec {
  name = "${pname}-${version}";
  pname = "easydict";
  version = "1.7";

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

  docheck = false; # No tests in archive

  meta = {
    homepage = https://github.com/makinacorpus/easydict;
    license = with stdenv.lib; licenses.lgpl3;
    description = "Access dict values as attributes (works recursively)";
  };
}