My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/derpconf/default.nix

19 lines
477 B

{ 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;
};
}