2018-11-03 02:24:30 -07:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, six
|
|
|
|
, enum34
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "gin-config";
|
2020-11-29 10:02:31 -08:00
|
|
|
version = "0.4.0";
|
2018-11-03 02:24:30 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-11-29 10:02:31 -08:00
|
|
|
sha256 = "9499c060e1faa340959fc4ada7fe53f643d6f8996a80262b28a082c1ef6849de";
|
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
|
|
|
};
|
|
|
|
}
|