mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
317b01bbd7
Diff: https://github.com/simplistix/sybil/compare/refs/tags/4.0.1...5.0.0 Changelog: https://github.com/simplistix/sybil/blob/5.0.0/CHANGELOG.rst
37 lines
796 B
Nix
37 lines
796 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sybil";
|
|
version = "5.0.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "simplistix";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-FeyamQDm/EqOWrRlxA8iIQniHI5xag+zUVfRGRHmslE=";
|
|
};
|
|
|
|
# Circular dependency with testfixtures
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"sybil"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Automated testing for the examples in your documentation";
|
|
homepage = "https://github.com/cjw296/sybil";
|
|
changelog = "https://github.com/simplistix/sybil/blob/${version}/CHANGELOG.rst";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|