linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / derpconf / default.nix
blobcc7b6870ad82b29025132a5c88369ef70bc6099b
1 { lib, buildPythonPackage, fetchPypi, six }:
3 buildPythonPackage rec {
4   pname = "derpconf";
5   version = "0.8.3";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "1bb152d8a1cf5c2a6d629bf29acd4af0c00811339642fc0a56172b0a83b31a15";
10   };
12   propagatedBuildInputs = [ six ];
14   meta = with lib; {
15     description = "derpconf abstracts loading configuration files for your app";
16     homepage = "https://github.com/globocom/derpconf";
17     license = licenses.mit;
18   };