12 buildPythonPackage rec {
15 format = "setuptools";
17 disabled = pythonOlder "3.7";
19 src = fetchFromGitHub {
20 owner = "pythological";
22 rev = "refs/tags/v${version}";
23 hash = "sha256-XssERKiv4A8x7dZhLeFSciN6RCEfGs0or3PAQiYSPII=";
26 propagatedBuildInputs = [ logical-unification ];
35 "--html=testing-report.html"
36 "--self-contained-html"
39 pythonImportsCheck = [ "cons" ];
42 description = "Implementation of Lisp/Scheme-like cons in Python";
43 homepage = "https://github.com/pythological/python-cons";
44 changelog = "https://github.com/pythological/python-cons/releases/tag/v${version}";
45 license = licenses.gpl3Only;
46 maintainers = with maintainers; [ Etjean ];