Skip to content

Commit

Permalink
Merge pull request #193444 from r-ryantm/auto-update/python3.10-easydict
Browse files Browse the repository at this point in the history
  • Loading branch information
mweinelt committed Sep 29, 2022
2 parents e47f7a0 + 072ddf6 commit 1130e29
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 1130e29

Please sign in to comment.