My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/easydict/default.nix

19 lines
475 B

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "easydict";
version = "1.9";
src = fetchPypi {
inherit pname version;
sha256 = "3f3f0dab07c299f0f4df032db1f388d985bb57fa4c5be30acd25c5f9a516883b";
};
docheck = false; # No tests in archive
meta = with lib; {
homepage = "https://github.com/makinacorpus/easydict";
license = licenses.lgpl3;
description = "Access dict values as attributes (works recursively)";
};
}