Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python310Packages.pyctr: add changelog to meta

authored by Fabian Affolter and committed by GitHub 4c01cd1c 926da4b6

+16 -5
+16 -5
pkgs/development/python-modules/pyctr/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, pythonOlder 2 - , pycryptodomex }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , pythonOlder 5 + , pycryptodomex 6 + }: 3 7 4 8 buildPythonPackage rec { 5 9 pname = "pyctr"; 6 10 version = "0.7.1"; 11 + format = "setuptools"; 12 + 7 13 disabled = pythonOlder "3.7"; 8 14 9 15 src = fetchPypi { ··· 11 17 hash = "sha256-SnCps5nzrl+dkbloRbjhaOGDzKOsi8OHX2JXgoJ/XG0="; 12 18 }; 13 19 14 - propagatedBuildInputs = [ pycryptodomex ]; 20 + propagatedBuildInputs = [ 21 + pycryptodomex 22 + ]; 15 23 16 - pythonImportsCheck = [ "pyctr" ]; 24 + pythonImportsCheck = [ 25 + "pyctr" 26 + ]; 17 27 18 28 meta = with lib; { 19 29 description = "Python library to interact with Nintendo 3DS files"; 30 + homepage = "https://github.com/ihaveamac/pyctr"; 31 + changelog = "https://github.com/ihaveamac/pyctr/blob/v${version}/CHANGELOG.md"; 20 32 license = licenses.mit; 21 33 maintainers = with maintainers; [ rileyinman ]; 22 - homepage = "https://github.com/ihaveamac/pyctr"; 23 34 }; 24 35 }