python311Packages.py-serializable: 0.17.1 -> 1.0.0

CHangelog: https://github.com/madpah/serializable/releases/tag/v1.0.0
This commit is contained in:
Fabian Affolter 2024-01-23 19:46:31 +01:00
parent edcff388a0
commit 9b9fb4c701

View File

@ -11,16 +11,16 @@
buildPythonPackage rec {
pname = "py-serializable";
version = "0.17.1";
version = "1.0.0";
pyproject = true;
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "madpah";
repo = "serializable";
rev = "refs/tags/v${version}";
hash = "sha256-G7bIsvWdL4qVg4akJ2KtXVS10DiJSFUYEzyQSp9ry9o=";
hash = "sha256-7WYe3X4wVUC7HyYoCVQYWm61C+J3r91Ci8IHNeWBTVE=";
};
nativeBuildInputs = [
@ -50,7 +50,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Pythonic library to aid with serialisation and deserialisation to/from JSON and XML";
homepage = "https://github.com/madpah/serializable";
changelog = "https://github.com/madpah/serializable/blob/${version}/CHANGELOG.md";
changelog = "https://github.com/madpah/serializable/blob/v${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};