at master 790 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 pythonOlder, 6 setuptools, 7}: 8 9buildPythonPackage rec { 10 pname = "sybil"; 11 version = "9.1.0"; 12 pyproject = true; 13 14 disabled = pythonOlder "3.7"; 15 16 src = fetchFromGitHub { 17 owner = "simplistix"; 18 repo = "sybil"; 19 tag = version; 20 hash = "sha256-ov8b8NPBbiqB/pcKgdD2D+xNSxUM1uGK8EP+20K7eGQ="; 21 }; 22 23 build-system = [ setuptools ]; 24 25 # Circular dependency with testfixtures 26 doCheck = false; 27 28 pythonImportsCheck = [ "sybil" ]; 29 30 meta = with lib; { 31 description = "Automated testing for the examples in your documentation"; 32 homepage = "https://github.com/cjw296/sybil"; 33 changelog = "https://github.com/simplistix/sybil/blob/${version}/CHANGELOG.rst"; 34 license = licenses.mit; 35 maintainers = [ ]; 36 }; 37}