13 buildPythonPackage rec {
16 format = "setuptools";
18 disabled = pythonOlder "3.8";
20 src = fetchFromGitHub {
21 owner = "pythological";
23 rev = "refs/tags/v${version}";
24 hash = "sha256-dl+exar98PnqEiCNX+Ydllp7aohsAYrFtxb2Q1Lxx6Y=";
27 propagatedBuildInputs = [
39 "--html=testing-report.html"
40 "--self-contained-html"
43 pythonImportsCheck = [ "etuples" ];
46 description = "Python S-expression emulation using tuple-like objects";
47 homepage = "https://github.com/pythological/etuples";
48 changelog = "https://github.com/pythological/etuples/releases/tag/v${version}";
49 license = licenses.asl20;
50 maintainers = with maintainers; [ Etjean ];