nixpkgs/pkgs/development/python-modules/easydict/default.nix

20 lines
485 B
Nix
Raw Normal View History

2017-08-20 19:35:06 +01:00
{ stdenv, fetchPypi, buildPythonPackage }:
buildPythonPackage rec {
pname = "easydict";
2018-11-04 10:34:58 +00:00
version = "1.9";
2017-08-20 19:35:06 +01:00
src = fetchPypi {
inherit pname version;
2018-11-04 10:34:58 +00:00
sha256 = "3f3f0dab07c299f0f4df032db1f388d985bb57fa4c5be30acd25c5f9a516883b";
2017-08-20 19:35:06 +01:00
};
docheck = false; # No tests in archive
meta = {
homepage = "https://github.com/makinacorpus/easydict";
2017-08-20 19:35:06 +01:00
license = with stdenv.lib; licenses.lgpl3;
description = "Access dict values as attributes (works recursively)";
};
}