3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/gin-config/default.nix

30 lines
642 B
Nix
Raw Normal View History

2018-11-03 09:24:30 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, six
, enum34
}:
buildPythonPackage rec {
pname = "gin-config";
2019-02-16 08:53:24 +00:00
version = "0.1.3";
2018-11-03 09:24:30 +00:00
src = fetchPypi {
inherit pname version;
2019-02-16 08:53:24 +00:00
sha256 = "07843fde2917f1a44f808fceb3c0227bb02ff7c4ebba8de6642206c03e7e8ba2";
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;
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
};
}