Merge pull request #222589 from fabaff/pvo-bump

python310Packages.pvo: 0.2.2 -> 1.0.0
This commit is contained in:
Fabian Affolter 2023-03-23 20:14:18 +01:00 committed by GitHub
commit 8c8e32f1b1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,16 +13,16 @@
buildPythonPackage rec {
pname = "pvo";
version = "0.2.2";
version = "1.0.0";
format = "pyproject";
disabled = pythonOlder "3.8";
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "frenck";
repo = "python-pvoutput";
rev = "v${version}";
hash = "sha256-2/O81MnFYbdOrzLiTSoX7IW+3ZGyyE/tIqgKr/sEaHI=";
rev = "refs/tags/v${version}";
hash = "sha256-6oVACUnK8WVlEx047CUXmSXQ0+M3xnSvyMHw5Wttk7M=";
};
nativeBuildInputs = [
@ -55,6 +55,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python module to interact with the PVOutput API";
homepage = "https://github.com/frenck/python-pvoutput";
changelog = "https://github.com/frenck/python-pvoutput/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};