summary refs log blame commit diff
path: root/pkgs/development/python-modules/derpconf/default.nix
blob: 84f30b7edf6ee6993422eca31f4418aa0624b51e (plain) (tree)
1
2
3
4
5
6
7
8
9



                                               
                    


                          
                                                                                









                                                                                
{ stdenv, buildPythonPackage, fetchPypi, six }:

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

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

  propagatedBuildInputs = [ six ];

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