1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 six,
6 enum34,
7}:
8
9buildPythonPackage rec {
10 pname = "gin-config";
11 version = "0.5.0";
12 format = "setuptools";
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "0c6ea5026ded927c8c93c990b01c695257c1df446e45e549a158cfbc79e19ed6";
17 };
18
19 propagatedBuildInputs = [
20 six
21 enum34
22 ];
23
24 # PyPI archive does not ship with tests
25 doCheck = false;
26
27 meta = with lib; {
28 homepage = "https://github.com/google/gin-config";
29 description = "Gin provides a lightweight configuration framework for Python, based on dependency injection";
30 license = licenses.asl20;
31 maintainers = with maintainers; [ jethro ];
32 };
33}