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

30 lines
642 B
Nix
Raw Normal View History

2018-11-03 10:24:30 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, six
, enum34
}:
buildPythonPackage rec {
pname = "gin-config";
2018-11-20 11:58:35 +01:00
version = "0.1.2";
2018-11-03 10:24:30 +01:00
src = fetchPypi {
inherit pname version;
2018-11-20 11:58:35 +01:00
sha256 = "a4e8a2537320240859157870ab58df60e979d936a3c9b17a8b2fa686fc31b287";
2018-11-03 10:24:30 +01:00
};
propagatedBuildInputs = [ six enum34 ];
# PyPI archive does not ship with tests
doCheck= false;
2018-11-03 10:24:30 +01: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 12:06:16 +01:00
maintainers = with maintainers; [ jethro ];
2018-11-03 10:24:30 +01:00
};
}