python312Packages.pypoint: 2.3.2 -> 3.0.0

Diff: https://github.com/fredrike/pypoint/compare/v2.3.2...v3.0.0
This commit is contained in:
Robert Schütz 2024-07-20 00:24:24 -07:00
parent cf375da8bf
commit c672d3c867

View File

@ -2,26 +2,25 @@
lib,
buildPythonPackage,
fetchFromGitHub,
authlib,
httpx,
setuptools,
aiohttp,
}:
buildPythonPackage rec {
pname = "pypoint";
version = "2.3.2";
format = "setuptools";
version = "3.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "fredrike";
repo = "pypoint";
rev = "v${version}";
hash = "sha256-tQ5rQs6ECn9O9dVXKWhmy9BBpOzgqSmwpmbIRbJn2CQ=";
hash = "sha256-Ri+vf/vnjQQ+9eZ1Gzt+v68FAxVGt0IY9S3SpeVem3A=";
};
propagatedBuildInputs = [
authlib
httpx
];
build-system = [ setuptools ];
dependencies = [ aiohttp ];
# upstream has no tests
doCheck = false;