Unverified Commit 2b1dabe8 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

Merge pull request #236918 from r-ryantm/auto-update/python310Packages.etuples

python310Packages.etuples: 0.3.8 -> 0.3.9
parents 2c620a45 b3f05ffd
Loading
Loading
Loading
Loading
+10 −4
Original line number Diff line number Diff line
@@ -6,17 +6,21 @@
, py
, pytestCheckHook
, pytest-html
, pythonOlder
}:

buildPythonPackage rec {
  pname = "etuples";
  version = "0.3.8";
  version = "0.3.9";
  format = "setuptools";

  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "pythological";
    repo = "etuples";
    rev = "refs/tags/v${version}";
    hash = "sha256-wEgam2IoI3z75bN45/R9o+0JmL3g0YmtsuJ4TnZjhi8=";
    hash = "sha256-dl+exar98PnqEiCNX+Ydllp7aohsAYrFtxb2Q1Lxx6Y=";
  };

  propagatedBuildInputs = [
@@ -35,12 +39,14 @@ buildPythonPackage rec {
    "--self-contained-html"
  ];

  pythonImportsCheck = [ "etuples" ];
  pythonImportsCheck = [
    "etuples"
  ];

  meta = with lib; {
    description = "Python S-expression emulation using tuple-like objects";
    homepage = "https://github.com/pythological/etuples";
    changelog = "https://github.com/pythological/etuples/releases";
    changelog = "https://github.com/pythological/etuples/releases/tag/v${version}";
    license = licenses.asl20;
    maintainers = with maintainers; [ Etjean ];
  };