gin-config: init

This commit is contained in:
Jethro Kuan 2018-11-03 17:24:30 +08:00 committed by Frederik Rietdijk
parent 0ae3b49bb4
commit baeb8bd5a7
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ lib
, buildPythonPackage
, fetchPypi
, six
, enum34
, absl-py
, tensorflow
}:
buildPythonPackage rec {
pname = "gin-config";
version = "0.1.1.2";
src = fetchPypi {
inherit pname version;
sha256 = "1zqzhg8nqdqjx0sjrsrs9bpyiaqqlyihqhhy2ijrpp62x9rjllga";
};
buildInputs = [ six enum34 tensorflow ];
checkInputs = [ absl-py tensorflow ];
meta = with lib; {
homepage = https://github.com/google/gin-config;
description = "Gin provides a lightweight configuration framework for Python, based on dependency injection.";
license = licenses.asl20;
maintainers = with maintainers; [ jethrokuan ];
};
}

View File

@ -362,6 +362,8 @@ in {
gidgethub = callPackage ../development/python-modules/gidgethub { };
gin-config = callPackage ../development/python-modules/gin-config { };
globus-sdk = callPackage ../development/python-modules/globus-sdk { };
goocalendar = callPackage ../development/python-modules/goocalendar { };