11 buildPythonPackage rec {
14 format = "setuptools";
16 disabled = pythonOlder "3.8";
18 src = fetchFromGitHub {
21 rev = "refs/tags/v${version}";
22 hash = "sha256-1XIo9Hg4whYS1AkFeX8nVnpv+IvnpmyydHYdVYS0xZc=";
25 propagatedBuildInputs = [
30 nativeCheckInputs = [ pytestCheckHook ];
32 pythonImportsCheck = [ "confection" ];
35 description = "Library that offers a configuration system";
36 homepage = "https://github.com/explosion/confection";
37 changelog = "https://github.com/explosion/confection/releases/tag/v${version}";
38 license = licenses.mit;
39 maintainers = with maintainers; [ fab ];