nixpkgs/pkgs/development/python-modules/sybil/default.nix

25 lines
544 B
Nix
Raw Normal View History

2017-11-07 12:47:24 +00:00
{ stdenv, buildPythonApplication, fetchPypi
, pytest, nose }:
buildPythonApplication rec {
pname = "sybil";
2018-02-03 09:54:45 +00:00
version = "1.0.7";
2017-11-07 12:47:24 +00:00
src = fetchPypi {
inherit pname version;
2018-02-03 09:54:45 +00:00
sha256 = "86332553392f865403883e44695bd8d9d47fe3887c01e17591955237b8fd2d8f";
2017-11-07 12:47:24 +00:00
};
checkInputs = [ pytest nose ];
checkPhase = ''
py.test tests
'';
meta = with stdenv.lib; {
description = "Automated testing for the examples in your documentation.";
homepage = https://github.com/cjw296/sybil/;
license = licenses.mit;
};
}