2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, six }:
|
2018-04-03 13:27:23 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "derpconf";
|
2019-02-14 07:37:14 +00:00
|
|
|
version = "0.8.3";
|
2018-04-03 13:27:23 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-02-14 07:37:14 +00:00
|
|
|
sha256 = "1bb152d8a1cf5c2a6d629bf29acd4af0c00811339642fc0a56172b0a83b31a15";
|
2018-04-03 13:27:23 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-04-03 13:27:23 +01:00
|
|
|
description = "derpconf abstracts loading configuration files for your app";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/globocom/derpconf";
|
2018-04-03 13:27:23 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|