about summary refs log tree commit diff
path: root/pkgs/development/python-modules/easydict/default.nix
blob: 2194fcf112469518c1b649a59f36e43e633242e0 (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
{
  lib,
  buildPythonPackage,
  fetchPypi,
}:

buildPythonPackage rec {
  pname = "easydict";
  version = "1.13";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-sRNd7bxByAEOK8H3fsl0TH+qQrzhoch0FnkUSdbId4A=";
  };

  doCheck = false; # No tests in archive

  pythonImportsCheck = [ "easydict" ];

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