python310Packages.littleutils: add changelog to meta

authored by Fabian Affolter and committed by Martin Weinelt a2bc91cd d5aa5af5

+13 -5
+13 -5
pkgs/development/python-modules/littleutils/default.nix
··· 1 - { buildPythonPackage 1 + { lib 2 + , buildPythonPackage 2 3 , fetchPypi 3 - , lib 4 + , pythonOlder 4 5 }: 5 6 6 7 buildPythonPackage rec { 7 8 pname = "littleutils"; 8 9 version = "0.2.2"; 10 + format = "setuptools"; 11 + 12 + disabled = pythonOlder "3.7"; 9 13 10 14 src = fetchPypi { 11 15 inherit pname version; 12 - sha256 = "0vwijrylppmk0nbddqvn527r9cg3zw8d6zk6r58hslry42jf7jp6"; 16 + hash = "sha256-5srjpCA+Uw1RyWZ+0xD/47GUjyh249aWBbPeS32WkW8="; 13 17 }; 14 18 15 - # This tiny package has no unit tests at all 19 + # Module has no tests 16 20 doCheck = false; 17 - pythonImportsCheck = [ "littleutils" ]; 21 + 22 + pythonImportsCheck = [ 23 + "littleutils" 24 + ]; 18 25 19 26 meta = with lib; { 20 27 description = "Small collection of Python utility functions"; 21 28 homepage = "https://github.com/alexmojaki/littleutils"; 29 + changelog = "https://github.com/alexmojaki/littleutils/releases/tag/v${version}"; 22 30 license = licenses.mit; 23 31 maintainers = with maintainers; [ jluttine ]; 24 32 };