Commit 8c503e76 authored by Robert Schütz's avatar Robert Schütz
Browse files
parent a7fc11be
Loading
Loading
Loading
Loading
+5 −7
Original line number Diff line number Diff line
@@ -18,16 +18,14 @@

buildPythonPackage rec {
  pname = "mashumaro";
  version = "3.16";
  version = "3.17";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "Fatal1ty";
    repo = "mashumaro";
    tag = "v${version}";
    hash = "sha256-SAdhBNQx5zWsXFwWxEAozprb2c7eJRdxZQwZMgBj/iA=";
    hash = "sha256-oQKSIDrIPlY1m63uP9Jxpgf7ruaZpt9uZF4hTso503U=";
  };

  build-system = [ setuptools ];
@@ -51,11 +49,11 @@ buildPythonPackage rec {

  pythonImportsCheck = [ "mashumaro" ];

  meta = with lib; {
  meta = {
    description = "Serialization library on top of dataclasses";
    homepage = "https://github.com/Fatal1ty/mashumaro";
    changelog = "https://github.com/Fatal1ty/mashumaro/releases/tag/${src.tag}";
    license = licenses.asl20;
    maintainers = with maintainers; [ tjni ];
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ tjni ];
  };
}