nixpkgs/pkgs/development/python-modules/easydict/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

28 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)";
};
}