mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 13:43:22 +00:00
28 lines
536 B
Nix
28 lines
536 B
Nix
{ 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)";
|
|
};
|
|
}
|