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

20 lines
475 B
Nix
Raw Normal View History

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