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

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "1bb152d8a1cf5c2a6d629bf29acd4af0c00811339642fc0a56172b0a83b31a15";
  };

  propagatedBuildInputs = [ six ];

  meta = with lib; {
    description = "derpconf abstracts loading configuration files for your app";
    homepage = "https://github.com/globocom/derpconf";
    license = licenses.mit;
  };
}