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