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

python312Packages.crc: refactor

+3 -3
+3 -3
pkgs/development/python-modules/crc/default.nix
··· 20 hash = "sha256-y30tnGG+G9dWBO8MUFYm2IGHiGIPbv4kB2VwhV0/C74="; 21 }; 22 23 - nativeBuildInputs = [ 24 poetry-core 25 ]; 26 ··· 37 ]; 38 39 meta = with lib; { 40 - changelog = "https://github.com/Nicoretti/crc/releases/tag/${version}"; 41 description = "Python module for calculating and verifying predefined & custom CRC's"; 42 - mainProgram = "crc"; 43 homepage = "https://nicoretti.github.io/crc/"; 44 license = licenses.bsd2; 45 maintainers = with maintainers; [ jleightcap ]; 46 }; 47 }
··· 20 hash = "sha256-y30tnGG+G9dWBO8MUFYm2IGHiGIPbv4kB2VwhV0/C74="; 21 }; 22 23 + build-system = [ 24 poetry-core 25 ]; 26 ··· 37 ]; 38 39 meta = with lib; { 40 description = "Python module for calculating and verifying predefined & custom CRC's"; 41 homepage = "https://nicoretti.github.io/crc/"; 42 + changelog = "https://github.com/Nicoretti/crc/releases/tag/${version}"; 43 license = licenses.bsd2; 44 maintainers = with maintainers; [ jleightcap ]; 45 + mainProgram = "crc"; 46 }; 47 }