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

python310Packages.derpconf: 0.8.3 -> 0.8.4
This commit is contained in:
Fabian Affolter 2023-11-05 14:12:43 +01:00 committed by GitHub
commit 25590a332c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,19 +1,35 @@
{ 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; [ ];
};
}