Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 528 B view raw
1{ lib 2, buildPythonApplication 3, fetchPypi 4, pytest 5, nose 6}: 7 8buildPythonApplication rec { 9 pname = "sybil"; 10 version = "1.4.0"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "fc46117619f2f704d1d1b02634fa3285f40479a3008172763b9998fe964f4d11"; 15 }; 16 17 checkInputs = [ pytest nose ]; 18 19 checkPhase = '' 20 py.test tests 21 ''; 22 23 meta = with lib; { 24 description = "Automated testing for the examples in your documentation"; 25 homepage = "https://github.com/cjw296/sybil"; 26 license = licenses.mit; 27 }; 28}