49 lines
1 KiB
Nix
49 lines
1 KiB
Nix
|
{ buildPythonPackage
|
||
|
, fetchPypi
|
||
|
, lib
|
||
|
, pytestCheckHook
|
||
|
, setuptools
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "anyconfig";
|
||
|
version = "0.12.0";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "sha256-MJHXZ1dAaG+t6FdVU38qfGzO+oZZxbtWF04C3tdLltU=";
|
||
|
};
|
||
|
|
||
|
postPatch = ''
|
||
|
substituteInPlace setup.cfg \
|
||
|
--replace "--cov=src -vv" ""
|
||
|
'';
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
setuptools
|
||
|
];
|
||
|
|
||
|
checkInputs = [
|
||
|
pytestCheckHook
|
||
|
];
|
||
|
|
||
|
disabledTests = [
|
||
|
# OSError: /build/anyconfig-0.12.0/tests/res/cli/no_template/10/e/10.* should exists but not
|
||
|
"test_runs_for_datasets"
|
||
|
];
|
||
|
|
||
|
disabledTestPaths = [
|
||
|
# NameError: name 'TT' is not defined
|
||
|
"tests/schema/test_jsonschema.py"
|
||
|
];
|
||
|
|
||
|
pythonImportsCheck = [ "anyconfig" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Python library provides common APIs to load and dump configuration files in various formats";
|
||
|
homepage = "https://github.com/ssato/python-anyconfig";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ tboerger ];
|
||
|
};
|
||
|
}
|