lol

python310Packages.cmd2: add changelog to meta

authored by

Fabian Affolter and committed by
Martin Weinelt
5f8f6e7d 24c9d800

+7 -3
+7 -3
pkgs/development/python-modules/cmd2/default.nix
··· 18 18 buildPythonPackage rec { 19 19 pname = "cmd2"; 20 20 version = "2.4.3"; 21 + format = "setuptools"; 21 22 22 23 disabled = pythonOlder "3.6"; 23 24 24 25 src = fetchPypi { 25 26 inherit pname version; 26 - sha256 = "sha256-cYc8Efcr0Z4rHbV4IUcW8NT3yPolAJPGASZamnF97lI="; 27 + hash = "sha256-cYc8Efcr0Z4rHbV4IUcW8NT3yPolAJPGASZamnF97lI="; 27 28 }; 28 29 29 30 LC_ALL = "en_US.UTF-8"; ··· 49 50 ]; 50 51 51 52 disabledTests = [ 52 - # don't require vim for tests, it causes lots of rebuilds 53 + # Don't require vim for tests, it causes lots of rebuilds 53 54 "test_find_editor_not_specified" 54 55 "test_transcript" 55 56 ]; ··· 67 68 68 69 doCheck = !stdenv.isDarwin; 69 70 70 - pythonImportsCheck = [ "cmd2" ]; 71 + pythonImportsCheck = [ 72 + "cmd2" 73 + ]; 71 74 72 75 meta = with lib; { 73 76 description = "Enhancements for standard library's cmd module"; 74 77 homepage = "https://github.com/python-cmd2/cmd2"; 78 + changelog = "https://github.com/python-cmd2/cmd2/releases/tag/${version}"; 75 79 license = with licenses; [ mit ]; 76 80 maintainers = with maintainers; [ teto ]; 77 81 };