python-packages easydict: init at 1.7
This commit is contained in:
parent
ae02dd2d0a
commit
4c623b3d92
20
pkgs/development/python-modules/easydict/default.nix
Normal file
20
pkgs/development/python-modules/easydict/default.nix
Normal file
@ -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)";
|
||||
};
|
||||
}
|
@ -5457,6 +5457,8 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
easydict = callPackage ../development/python-modules/easydict { };
|
||||
|
||||
EasyProcess = buildPythonPackage rec {
|
||||
name = "EasyProcess-0.2.3";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user