gin-config: init
This commit is contained in:
parent
0ae3b49bb4
commit
baeb8bd5a7
29
pkgs/development/python-modules/gin-config/default.nix
Normal file
29
pkgs/development/python-modules/gin-config/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
x
Reference in New Issue
Block a user