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

27 lines
536 B

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "easydict";
version = "1.10";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-Edyywgqqu/7kwYi0vBQ+9r4ESzTb8M5aWTJCwmlaCA8=";
};
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)";
};
}