nixpkgs/pkgs/development/python-modules/gin-config/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
644 B
Nix
Raw Normal View History

2018-11-03 09:24:30 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, six
, enum34
}:
buildPythonPackage rec {
pname = "gin-config";
version = "0.5.0";
2018-11-03 09:24:30 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "0c6ea5026ded927c8c93c990b01c695257c1df446e45e549a158cfbc79e19ed6";
2018-11-03 09:24:30 +00:00
};
propagatedBuildInputs = [ six enum34 ];
# PyPI archive does not ship with tests
doCheck= false;
2018-11-03 09:24:30 +00:00
meta = with lib; {
homepage = "https://github.com/google/gin-config";
2018-11-03 09:24:30 +00:00
description = "Gin provides a lightweight configuration framework for Python, based on dependency injection.";
license = licenses.asl20;
2018-11-03 11:06:16 +00:00
maintainers = with maintainers; [ jethro ];
2018-11-03 09:24:30 +00:00
};
}