1{ stdenv, buildPythonPackage, fetchPypi, six }:
2
3buildPythonPackage rec {
4 pname = "derpconf";
5 version = "0.8.2";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "ce4f0cd55d367a3357538a18422c916dced0617a00056b4ebabe775059eace4f";
10 };
11
12 propagatedBuildInputs = [ six ];
13
14 meta = with stdenv.lib; {
15 description = "derpconf abstracts loading configuration files for your app";
16 homepage = https://github.com/globocom/derpconf;
17 license = licenses.mit;
18 };
19}