lol

python310Packages.etuples: add format

- disable on unsupported Python releases

authored by

Fabian Affolter and committed by
GitHub
b3f05ffd 63ea80b6

+8 -2
+8 -2
pkgs/development/python-modules/etuples/default.nix
··· 6 6 , py 7 7 , pytestCheckHook 8 8 , pytest-html 9 + , pythonOlder 9 10 }: 10 11 11 12 buildPythonPackage rec { 12 13 pname = "etuples"; 13 14 version = "0.3.9"; 15 + format = "setuptools"; 16 + 17 + disabled = pythonOlder "3.8"; 14 18 15 19 src = fetchFromGitHub { 16 20 owner = "pythological"; ··· 35 39 "--self-contained-html" 36 40 ]; 37 41 38 - pythonImportsCheck = [ "etuples" ]; 42 + pythonImportsCheck = [ 43 + "etuples" 44 + ]; 39 45 40 46 meta = with lib; { 41 47 description = "Python S-expression emulation using tuple-like objects"; 42 48 homepage = "https://github.com/pythological/etuples"; 43 - changelog = "https://github.com/pythological/etuples/releases"; 49 + changelog = "https://github.com/pythological/etuples/releases/tag/v${version}"; 44 50 license = licenses.asl20; 45 51 maintainers = with maintainers; [ Etjean ]; 46 52 };