Unverified Commit c11e9660 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.asteval: 1.0.6 -> 1.0.7 (#459672)

parents f9908540 95ae2ac1
Loading
Loading
Loading
Loading
+3 −6
Original line number Diff line number Diff line
@@ -4,22 +4,19 @@
  fetchFromGitHub,
  pytest-cov-stub,
  pytestCheckHook,
  pythonOlder,
  setuptools-scm,
}:

buildPythonPackage rec {
  pname = "asteval";
  version = "1.0.6";
  version = "1.0.7";
  pyproject = true;

  disabled = pythonOlder "3.9";

  src = fetchFromGitHub {
    owner = "lmfit";
    repo = "asteval";
    tag = version;
    hash = "sha256-DzLVe8TlWAPQXzai9CJlDAow6UTSmkA/DW3fT30YfZY=";
    hash = "sha256-c+gVT947IpJC2gn1SWVth0ScOBh34m89dpgR5AikOHk=";
  };

  build-system = [ setuptools-scm ];
@@ -39,7 +36,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "AST evaluator of Python expression using ast module";
    homepage = "https://github.com/lmfit/asteval";
    changelog = "https://github.com/lmfit/asteval/releases/tag/${version}";
    changelog = "https://github.com/lmfit/asteval/releases/tag/${src.tag}";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };