2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, fetchpatch, pytest }:
|
2018-12-14 19:53:02 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2020-06-08 10:33:07 +01:00
|
|
|
version = "0.5.1";
|
2018-12-14 19:53:02 +00:00
|
|
|
pname = "pytest-dependency";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-08 10:33:07 +01:00
|
|
|
sha256 = "c2a892906192663f85030a6ab91304e508e546cddfe557d692d61ec57a1d946b";
|
2018-12-14 19:53:02 +00:00
|
|
|
};
|
|
|
|
|
2021-03-20 20:48:57 +00:00
|
|
|
patches = [
|
|
|
|
# Fix build with pytest ≥ 6.2.0, https://github.com/RKrahl/pytest-dependency/pull/51
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/RKrahl/pytest-dependency/commit/0930889a13e2b9baa7617f05dc9b55abede5209d.patch";
|
|
|
|
sha256 = "0ka892j0rrlnfvk900fcph0f6lsnr9dy06q5k2s2byzwijhdw6n5";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2021-03-12 22:20:19 +00:00
|
|
|
buildInputs = [ pytest ];
|
2018-12-14 19:53:02 +00:00
|
|
|
|
2019-04-26 19:40:49 +01:00
|
|
|
checkInputs = [ pytest ];
|
|
|
|
|
2018-12-14 19:53:02 +00:00
|
|
|
checkPhase = ''
|
|
|
|
pytest
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/RKrahl/pytest-dependency";
|
2018-12-14 19:53:02 +00:00
|
|
|
description = "Manage dependencies of tests";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.marsam ];
|
|
|
|
};
|
|
|
|
}
|