1{ 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 setuptools, 6}: 7 8buildPythonPackage rec { 9 pname = "pynose"; 10 version = "1.5.0"; 11 pyproject = true; 12 13 src = fetchFromGitHub { 14 owner = "mdmintz"; 15 repo = "pynose"; 16 rev = "refs/tags/v${version}"; 17 hash = "sha256-Oi+vwInqgsdZfr5abJUa4zkTktpEuG0m89d1O8Oot0Q="; 18 }; 19 20 nativeBuildInputs = [ setuptools ]; 21 22 # has no tests 23 doCheck = false; 24 25 meta = with lib; { 26 description = "pynose fixes nose to extend unittest and make testing easier"; 27 homepage = "https://github.com/mdmintz/pynose"; 28 license = licenses.mit; 29 maintainers = with maintainers; [ SuperSandro2000 ]; 30 }; 31}