Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / easydict / default.nix
blob14aae92ef5c4f720bbb320fce22a838e24271eec
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "easydict";
8   version = "1.13";
9   format = "setuptools";
11   src = fetchPypi {
12     inherit pname version;
13     hash = "sha256-sRNd7bxByAEOK8H3fsl0TH+qQrzhoch0FnkUSdbId4A=";
14   };
16   doCheck = false; # No tests in archive
18   pythonImportsCheck = [
19     "easydict"
20   ];
22   meta = with lib; {
23     homepage = "https://github.com/makinacorpus/easydict";
24     license = licenses.lgpl3;
25     description = "Access dict values as attributes (works recursively)";
26   };