nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at r-updates 19 lines 279 B view raw
1{ 2 lzallright, 3 buildPythonPackage, 4 pytestCheckHook, 5}: 6 7buildPythonPackage { 8 inherit (lzallright) version src; 9 pname = "lzallright-tests"; 10 pyproject = false; 11 12 dontBuild = true; 13 dontInstall = true; 14 15 nativeCheckInputs = [ 16 lzallright 17 pytestCheckHook 18 ]; 19}