Merge pull request #216805 from r-ryantm/auto-update/python310Packages.simpleeval

python310Packages.simpleeval: 0.9.12 -> 0.9.13
This commit is contained in:
Fabian Affolter 2023-02-17 18:39:54 +01:00 committed by GitHub
commit 44cc636f70
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,14 +7,14 @@
buildPythonPackage rec {
pname = "simpleeval";
version = "0.9.12";
version = "0.9.13";
format = "pyproject";
src = fetchFromGitHub {
owner = "danthedeckie";
repo = pname;
rev = version;
sha256 = "0khgl729q5133fgc00d550f4r77707rkkn7r56az4v8bvx0q8xp4";
rev = "refs/tags/${version}";
hash = "sha256-I1GILYPE6OyotgRe0Ek/iHHv6q9/b/MlcTxMAtfZD80=";
};
nativeBuildInputs = [
@ -36,6 +36,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Simple, safe single expression evaluator library";
homepage = "https://github.com/danthedeckie/simpleeval";
changelog = "https://github.com/danthedeckie/simpleeval/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ johbo ];
};