pythonPackages.sybil: 1.0.9 -> 1.2.2
This commit is contained in:
parent
26d0577ef2
commit
5286afc72b
|
@ -1,31 +1,28 @@
|
||||||
{ stdenv, buildPythonApplication, fetchPypi, fetchpatch
|
{ lib
|
||||||
, pytest, nose }:
|
, buildPythonApplication
|
||||||
|
, fetchPypi
|
||||||
|
, pytest
|
||||||
|
, nose
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonApplication rec {
|
buildPythonApplication rec {
|
||||||
pname = "sybil";
|
pname = "sybil";
|
||||||
version = "1.0.9";
|
version = "1.2.2";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "41d2f1dba8fd1d8ead5e9b1220b590fab8b0d1ca01d43da08555b1fb08d4d8e8";
|
sha256 = "dd84e68facfcb778298ef50a4d7446d4d9092e9d8596012b12bcb82858fd10e1";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
|
||||||
(fetchpatch {
|
|
||||||
url = https://github.com/cjw296/sybil/commit/6461d8156cfb68bd073ec613a5a516916e97e549.patch;
|
|
||||||
sha256 = "0aqny0i7l6g6d7vr025b90zz8wzszqdbmi05mp67dxw5xqjqvxj2";
|
|
||||||
})
|
|
||||||
];
|
|
||||||
|
|
||||||
checkInputs = [ pytest nose ];
|
checkInputs = [ pytest nose ];
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
py.test tests
|
py.test tests
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with lib; {
|
||||||
description = "Automated testing for the examples in your documentation.";
|
description = "Automated testing for the examples in your documentation";
|
||||||
homepage = https://github.com/cjw296/sybil/;
|
homepage = "https://github.com/cjw296/sybil";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue