1{ lib 2, buildPythonPackage 3, fetchPypi 4, six 5, enum34 6}: 7 8buildPythonPackage rec { 9 pname = "gin-config"; 10 version = "0.5.0"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "0c6ea5026ded927c8c93c990b01c695257c1df446e45e549a158cfbc79e19ed6"; 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}