2020-06-07 09:39:17 +01:00
|
|
|
{ lib
|
2018-10-16 18:23:30 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2021-02-05 16:55:47 +00:00
|
|
|
, fetchpatch
|
2020-06-07 09:39:17 +01:00
|
|
|
, six, pyyaml, mock
|
|
|
|
, pytestCheckHook
|
|
|
|
, enum34
|
|
|
|
, isPy3k
|
2018-10-16 18:23:30 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "ddt";
|
2020-06-06 07:47:03 +01:00
|
|
|
version = "1.4.1";
|
2018-10-16 18:23:30 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-06 07:47:03 +01:00
|
|
|
sha256 = "0595e70d074e5777771a45709e99e9d215552fb1076443a25fad6b23d8bf38da";
|
2018-10-16 18:23:30 +01:00
|
|
|
};
|
|
|
|
|
2021-02-05 16:55:47 +00:00
|
|
|
patches = [
|
|
|
|
# fix tests with recent PyYAML, https://github.com/datadriventests/ddt/pull/96
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/datadriventests/ddt/commit/97f0a2315736e50f1b34a015447cd751da66ecb6.patch";
|
|
|
|
sha256 = "1g7l5h7m7s4yqfxlygrg7nnhb9xhz1drjld64ssi3fbsmn7klf0a";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2020-06-07 09:39:17 +01:00
|
|
|
checkInputs = [ six pyyaml mock pytestCheckHook ];
|
2018-11-25 11:57:31 +00:00
|
|
|
|
2020-06-07 09:39:17 +01:00
|
|
|
propagatedBuildInputs = lib.optionals (!isPy3k) [
|
|
|
|
enum34
|
|
|
|
];
|
2018-11-25 11:57:31 +00:00
|
|
|
|
2020-06-07 09:39:17 +01:00
|
|
|
meta = with lib; {
|
2018-10-16 18:23:30 +01:00
|
|
|
description = "Data-Driven/Decorated Tests, a library to multiply test cases";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/txels/ddt";
|
2018-10-16 18:23:30 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|