Unverified Commit c1860dfc authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

python3Packages.aioapcaccess: 0.5.0 -> 1.0.0 (#441301)

parents a2c37bea 541dc9a2
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -11,19 +11,19 @@

buildPythonPackage rec {
  pname = "aioapcaccess";
  version = "0.5.0";
  version = "1.0.0";
  pyproject = true;

  disabled = pythonOlder "3.8";
  disabled = pythonOlder "3.9";

  src = fetchFromGitHub {
    owner = "yuxincs";
    repo = "aioapcaccess";
    tag = "v${version}";
    hash = "sha256-nI8hfHfSLMOKPcG5idYqqa/msJuR/Xt+JmgzdftlN28=";
    hash = "sha256-gCi0vo4w3jr4w5neQS9v821rdfE+SqnUkrOrEQUET7E=";
  };

  nativeBuildInputs = [
  build-system = [
    setuptools
    setuptools-scm
  ];
@@ -38,7 +38,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Module for working with apcaccess";
    homepage = "https://github.com/yuxincs/aioapcaccess";
    changelog = "https://github.com/yuxincs/aioapcaccess/releases/tag/v${version}";
    changelog = "https://github.com/yuxincs/aioapcaccess/releases/tag/${src.tag}";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };