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

20 lines
483 B
Nix
Raw Normal View History

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