1{ lib
2, buildPythonPackage
3, fetchPypi
4, six
5, pythonOlder
6}:
7
8buildPythonPackage rec {
9 pname = "derpconf";
10 version = "0.8.4";
11 format = "setuptools";
12
13 disabled = pythonOlder "3.9";
14
15 src = fetchPypi {
16 inherit pname version;
17 hash = "sha256-66MOqcWIiqJrORJDgAH5iUblHyqJvuf9DIBN56XjKwU=";
18 };
19
20 propagatedBuildInputs = [
21 six
22 ];
23
24 pythonImportsCheck = [
25 "derpconf"
26 ];
27
28 meta = with lib; {
29 description = "Module to abstract loading configuration files for your app";
30 homepage = "https://github.com/globocom/derpconf";
31 changelog = "https://github.com/globocom/derpconf/releases/tag/${version}";
32 license = licenses.mit;
33 maintainers = with maintainers; [ ];
34 };
35}