lol

Merge pull request #241191 from r-ryantm/auto-update/python310Packages.cons

python310Packages.cons: 0.4.5 -> 0.4.6

authored by

Weijia Wang and committed by
GitHub
13718e97 e6e1030c

+8 -4
+8 -4
pkgs/development/python-modules/cons/default.nix
··· 5 5 , py 6 6 , pytestCheckHook 7 7 , pytest-html 8 + , pythonOlder 8 9 }: 9 10 10 11 buildPythonPackage rec { 11 12 pname = "cons"; 12 - version = "0.4.5"; 13 + version = "0.4.6"; 14 + format = "setuptools"; 15 + 16 + disabled = pythonOlder "3.7"; 13 17 14 18 src = fetchFromGitHub { 15 19 owner = "pythological"; 16 20 repo = "python-cons"; 17 - rev = "fbeedfc8a3d1bff4ba179d492155cdd55538365e"; 18 - hash = "sha256-ivHFep9iYPvyiBIZKMAzqrLGnQkeuxd0meYMZwZFFH0="; 21 + rev = "refs/tags/v${version}"; 22 + hash = "sha256-XssERKiv4A8x7dZhLeFSciN6RCEfGs0or3PAQiYSPII="; 19 23 }; 20 24 21 25 propagatedBuildInputs = [ ··· 38 42 meta = with lib; { 39 43 description = "An implementation of Lisp/Scheme-like cons in Python"; 40 44 homepage = "https://github.com/pythological/python-cons"; 41 - changelog = "https://github.com/pythological/python-cons/releases"; 45 + changelog = "https://github.com/pythological/python-cons/releases/tag/v${version}"; 42 46 license = licenses.gpl3Only; 43 47 maintainers = with maintainers; [ Etjean ]; 44 48 };