From 4c623b3d92fa7a8d34d4b7e3c1f152f0040e16f4 Mon Sep 17 00:00:00 2001 From: Chris Hodapp Date: Sun, 20 Aug 2017 14:35:06 -0400 Subject: python-packages easydict: init at 1.7 --- pkgs/development/python-modules/easydict/default.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pkgs/development/python-modules/easydict/default.nix (limited to 'pkgs/development/python-modules/easydict') diff --git a/pkgs/development/python-modules/easydict/default.nix b/pkgs/development/python-modules/easydict/default.nix new file mode 100644 index 00000000000..12e0f6934d9 --- /dev/null +++ b/pkgs/development/python-modules/easydict/default.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchPypi, buildPythonPackage }: + +buildPythonPackage rec { + name = "${pname}-${version}"; + pname = "easydict"; + version = "1.7"; + + src = fetchPypi { + inherit pname version; + sha256 = "1xpnwjdw4x5kficjgcajqcal6bxcb0ax8l6hdkww9fp6lrh28x8v"; + }; + + 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)"; + }; +} -- cgit 1.4.1