83405b6dd2
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
27 lines
534 B
Nix
27 lines
534 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "easydict";
|
|
version = "1.10";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "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)";
|
|
};
|
|
}
|