11 buildPythonPackage rec {
14 format = "setuptools";
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
19 owner = "pythological";
21 rev = "refs/tags/v${version}";
22 hash = "sha256-XssERKiv4A8x7dZhLeFSciN6RCEfGs0or3PAQiYSPII=";
25 propagatedBuildInputs = [
36 "--html=testing-report.html"
37 "--self-contained-html"
40 pythonImportsCheck = [ "cons" ];
43 description = "An implementation of Lisp/Scheme-like cons in Python";
44 homepage = "https://github.com/pythological/python-cons";
45 changelog = "https://github.com/pythological/python-cons/releases/tag/v${version}";
46 license = licenses.gpl3Only;
47 maintainers = with maintainers; [ Etjean ];