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