2023-01-11 07:51:40 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2023-02-09 11:40:11 +00:00
|
|
|
, fetchpatch
|
2023-01-11 07:51:40 +00:00
|
|
|
, pytestCheckHook
|
|
|
|
, coveralls
|
|
|
|
, numpy
|
|
|
|
, decopatch
|
|
|
|
, more-itertools
|
|
|
|
, nestedtext
|
|
|
|
, pyyaml
|
|
|
|
, tidyexc
|
|
|
|
, toml
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "parametrize-from-file";
|
|
|
|
version = "0.17.0";
|
2023-01-20 10:41:00 +00:00
|
|
|
format = "flit";
|
2023-01-11 07:51:40 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit version;
|
|
|
|
pname = "parametrize_from_file";
|
|
|
|
sha256 = "1c91j869n2vplvhawxc1sv8km8l53bhlxhhms43fyjsqvy351v5j";
|
|
|
|
};
|
|
|
|
|
2023-02-09 11:40:11 +00:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
name = "replace contextlib2-with-contextlib.patch";
|
|
|
|
url = "https://github.com/kalekundert/parametrize_from_file/commit/edee706770a713130da7c4b38b0a07de1bd79c1b.patch";
|
|
|
|
hash = "sha256-VkPKGkYYTB5XCavtEEnFJ+EdNUUhITz/euwlYAPC/tQ=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2023-01-11 07:51:40 +00:00
|
|
|
# patch out coveralls since it doesn't provide us value
|
|
|
|
preBuild = ''
|
|
|
|
sed -i '/coveralls/d' ./pyproject.toml
|
2023-01-20 10:41:00 +00:00
|
|
|
|
|
|
|
substituteInPlace pyproject.toml \
|
|
|
|
--replace "more_itertools~=8.10" "more_itertools"
|
2023-01-11 07:51:40 +00:00
|
|
|
'';
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [
|
2023-01-11 07:51:40 +00:00
|
|
|
numpy
|
|
|
|
pytestCheckHook
|
|
|
|
];
|
2023-01-20 10:41:00 +00:00
|
|
|
|
2023-01-11 07:51:40 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
decopatch
|
|
|
|
more-itertools
|
|
|
|
nestedtext
|
|
|
|
pyyaml
|
|
|
|
tidyexc
|
|
|
|
toml
|
|
|
|
];
|
|
|
|
|
2023-01-20 10:41:00 +00:00
|
|
|
pythonImportsCheck = [ "parametrize_from_file" ];
|
|
|
|
|
2023-01-11 07:51:40 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Read unit test parameters from config files";
|
|
|
|
homepage = "https://github.com/kalekundert/parametrize_from_file";
|
|
|
|
changelog = "https://github.com/kalekundert/parametrize_from_file/blob/v${version}/CHANGELOG.md";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ jpetrucciani ];
|
|
|
|
};
|
|
|
|
}
|