My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/anyconfig/default.nix

48 lines
1.0 KiB

{ buildPythonPackage
, fetchPypi
, lib
, pytestCheckHook
, setuptools
}:
buildPythonPackage rec {
pname = "anyconfig";
version = "0.13.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-A/8uF2KvOI+7vtHBq3+fHsAGqR2n2zpouWPabneV0qw=";
};
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 ];
};
}