Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 485 B view raw
1{ stdenv, fetchPypi, buildPythonPackage }: 2 3buildPythonPackage rec { 4 pname = "easydict"; 5 version = "1.9"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "3f3f0dab07c299f0f4df032db1f388d985bb57fa4c5be30acd25c5f9a516883b"; 10 }; 11 12 docheck = false; # No tests in archive 13 14 meta = { 15 homepage = "https://github.com/makinacorpus/easydict"; 16 license = with stdenv.lib; licenses.lgpl3; 17 description = "Access dict values as attributes (works recursively)"; 18 }; 19}