Unverified Commit 25590a33 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #265629 from r-ryantm/auto-update/python310Packages.derpconf

python310Packages.derpconf: 0.8.3 -> 0.8.4
parents 395c5585 5bc96d1b
Loading
Loading
Loading
Loading
+21 −5
Original line number Diff line number Diff line
{ lib, buildPythonPackage, fetchPypi, six }:
{ lib
, buildPythonPackage
, fetchPypi
, six
, pythonOlder
}:

buildPythonPackage rec {
  pname = "derpconf";
  version = "0.8.3";
  version = "0.8.4";
  format = "setuptools";

  disabled = pythonOlder "3.9";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1bb152d8a1cf5c2a6d629bf29acd4af0c00811339642fc0a56172b0a83b31a15";
    hash = "sha256-66MOqcWIiqJrORJDgAH5iUblHyqJvuf9DIBN56XjKwU=";
  };

  propagatedBuildInputs = [ six ];
  propagatedBuildInputs = [
    six
  ];

  pythonImportsCheck = [
    "derpconf"
  ];

  meta = with lib; {
    description = "derpconf abstracts loading configuration files for your app";
    description = "Module to abstract loading configuration files for your app";
    homepage = "https://github.com/globocom/derpconf";
    changelog = "https://github.com/globocom/derpconf/releases/tag/${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
  };
}