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

python310Packages.etuples: add format

- disable on unsupported Python releases
parent 63ea80b6
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
@@ -6,11 +6,15 @@
, py
, pytestCheckHook
, pytest-html
, pythonOlder
}:

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

  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "pythological";
@@ -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 ];
  };