Skip to content

Commit

Permalink
python310Packages.easydict: 1.9 -> 1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
r-ryantm authored and mweinelt committed Sep 29, 2022
1 parent 8f267bd commit 072ddf6
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions pkgs/development/python-modules/easydict/default.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,23 @@
{ lib, buildPythonPackage, fetchPypi }:
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
pname = "easydict";
version = "1.9";
version = "1.10";
format = "setuptools";

src = fetchPypi {
inherit pname version;
sha256 = "3f3f0dab07c299f0f4df032db1f388d985bb57fa4c5be30acd25c5f9a516883b";
sha256 = "sha256-Edyywgqqu/7kwYi0vBQ+9r4ESzTb8M5aWTJCwmlaCA8=";
};

docheck = false; # No tests in archive
doCheck = false; # No tests in archive

pythonImportsCheck = [
"easydict"
];

meta = with lib; {
homepage = "https://github.com/makinacorpus/easydict";
Expand Down

0 comments on commit 072ddf6

Please sign in to comment.