pythonPackages.derpconf: Move to own file

This commit is contained in:
Elis Hirwing
2018-04-03 14:27:23 +02:00
committed by Frederik Rietdijk
parent 7ebc5dfad2
commit 1be2158445
2 changed files with 20 additions and 16 deletions

View File

@@ -0,0 +1,19 @@
{ stdenv, buildPythonPackage, fetchPypi, six }:
buildPythonPackage rec {
pname = "derpconf";
version = "0.4.9";
src = fetchPypi {
inherit pname version;
sha256 = "0si3xnhyjk8dykr377v35bldsjv1ikgx4ff3crizwxv47ag42aci";
};
propagatedBuildInputs = [ six ];
meta = with stdenv.lib; {
description = "derpconf abstracts loading configuration files for your app";
homepage = https://github.com/globocom/derpconf;
license = licenses.mit;
};
}