Merge pull request #298400 from fabaff/ondilo-bump

python312Packages.ondilo: 0.3.0 -> 0.4.0
This commit is contained in:
Fabian Affolter 2024-03-23 23:10:16 +01:00 committed by GitHub
commit 1d1fe79748
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 12 additions and 6 deletions

View File

@ -5,23 +5,28 @@
, pythonOlder
, requests
, requests-oauthlib
, setuptools
}:
buildPythonPackage rec {
pname = "ondilo";
version = "0.3.0";
format = "setuptools";
version = "0.4.0";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "JeromeHXP";
repo = pname;
rev = version;
hash = "sha256-MI6K+41I/IVi+GRBdmRIHbljULDFLAwpo3W8tdxCOBM=";
repo = "ondilo";
rev = "refs/tags/${version}";
hash = "sha256-BieWdPakQts0QxzQzJYlP6a7ieZ40rAyYqhy8zEvU38=";
};
propagatedBuildInputs = [
build-system = [
setuptools
];
dependencies = [
oauthlib
requests
requests-oauthlib
@ -37,6 +42,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python package to access Ondilo ICO APIs";
homepage = "https://github.com/JeromeHXP/ondilo";
changelog = "https://github.com/JeromeHXP/ondilo/releases/tag/${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};