python3Packages.pytest-check: 0.3.7 -> 0.3.9, use pypi
This commit is contained in:
parent
d21f05216e
commit
3c347d5585
@ -1,24 +1,22 @@
|
|||||||
{ stdenv
|
{ stdenv
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchPypi
|
||||||
, pytest
|
, pytest
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pytest-check";
|
pname = "pytest-check";
|
||||||
version = "0.3.5";
|
version = "0.3.9";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchPypi {
|
||||||
owner = "okken";
|
pname = "pytest_check";
|
||||||
repo = "pytest-check";
|
inherit version;
|
||||||
rev = version;
|
sha256 = "0asrrz0fgk6wqffsz1ffd6z9xyw314fwh5bwjzcq75w8w1g4ass9";
|
||||||
sha256 = "11wb4f4sp4cr5mzqdakrbycwgfr2p1sx1l91fa6525wnfvgc0qy3";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pytest ];
|
propagatedBuildInputs = [ pytest ];
|
||||||
|
checkInputs = [ pytestCheckHook ];
|
||||||
checkInputs = [ pytest pytestCheckHook ];
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "pytest plugin allowing multiple failures per test";
|
description = "pytest plugin allowing multiple failures per test";
|
||||||
|
Loading…
Reference in New Issue
Block a user