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