nixpkgs/pkgs/development/python-modules/derpconf/default.nix

20 lines
485 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, six }:
buildPythonPackage rec {
pname = "derpconf";
2018-04-04 18:06:30 +00:00
version = "0.8.2";
src = fetchPypi {
inherit pname version;
2018-04-04 18:06:30 +00:00
sha256 = "ce4f0cd55d367a3357538a18422c916dced0617a00056b4ebabe775059eace4f";
};
propagatedBuildInputs = [ six ];
meta = with stdenv.lib; {
description = "derpconf abstracts loading configuration files for your app";
homepage = https://github.com/globocom/derpconf;
license = licenses.mit;
};
}