2018-11-03 02:24:30 -07:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, six
|
|
|
|
, enum34
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "gin-config";
|
2020-06-05 23:47:08 -07:00
|
|
|
version = "0.3.0";
|
2018-11-03 02:24:30 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-05 23:47:08 -07:00
|
|
|
sha256 = "6a83b7639ae76c276c0380d71d583f151b327a7c37978add314180ec1280a6cc";
|
2018-11-03 02:24:30 -07:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2018-11-10 19:35:28 -08:00
|
|
|
propagatedBuildInputs = [ six enum34 ];
|
2018-11-10 07:13:04 -08:00
|
|
|
|
|
|
|
# PyPI archive does not ship with tests
|
|
|
|
doCheck= false;
|
2018-11-03 02:24:30 -07:00
|
|
|
|
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/google/gin-config";
|
2018-11-03 02:24:30 -07:00
|
|
|
description = "Gin provides a lightweight configuration framework for Python, based on dependency injection.";
|
|
|
|
license = licenses.asl20;
|
2018-11-03 04:06:16 -07:00
|
|
|
maintainers = with maintainers; [ jethro ];
|
2018-11-03 02:24:30 -07:00
|
|
|
};
|
|
|
|
}
|