about summary refs log tree commit diff
path: root/pkgs/development/python-modules/derpconf/default.nix
blob: 3a0ecffe526aafd43adcb6382041b533342a1139 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, buildPythonPackage, fetchPypi, six }:

buildPythonPackage rec {
  pname = "derpconf";
  version = "0.8.2";

  src = fetchPypi {
    inherit pname version;
    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;
  };
}