Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildPythonPackage, fetchPypi, pytest }: 2 3buildPythonPackage rec { 4 pname = "pytest-warnings"; 5 version = "0.3.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "5939f76fe04ad18297e53af0c9fb38aca1ec74db807bd40ad72733603adbbc7d"; 10 }; 11 12 buildInputs = [ pytest ]; 13 14 meta = { 15 description = "Plugin to list Python warnings in pytest report"; 16 homepage = "https://github.com/fschulze/pytest-warnings"; 17 license = lib.licenses.mit; 18 }; 19}