ps3-disc-dumper: 3.2.3 -> 4.2.5, .NET 6 -> 9 (#361506)
[NixPkgs.git] / pkgs / development / python-modules / aioapcaccess / default.nix
blob104e09fac8ba35e97a25e1b0e1ffae0fcb619dc2
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pytest-asyncio,
6   pytestCheckHook,
7   pythonOlder,
8   setuptools,
9   setuptools-scm,
12 buildPythonPackage rec {
13   pname = "aioapcaccess";
14   version = "0.5.0";
15   pyproject = true;
17   disabled = pythonOlder "3.8";
19   src = fetchFromGitHub {
20     owner = "yuxincs";
21     repo = "aioapcaccess";
22     rev = "refs/tags/v${version}";
23     hash = "sha256-nI8hfHfSLMOKPcG5idYqqa/msJuR/Xt+JmgzdftlN28=";
24   };
26   nativeBuildInputs = [
27     setuptools
28     setuptools-scm
29   ];
31   nativeCheckInputs = [
32     pytest-asyncio
33     pytestCheckHook
34   ];
36   pythonImportsCheck = [ "aioapcaccess" ];
38   meta = with lib; {
39     description = "Module for working with apcaccess";
40     homepage = "https://github.com/yuxincs/aioapcaccess";
41     changelog = "https://github.com/yuxincs/aioapcaccess/releases/tag/v${version}";
42     license = licenses.mit;
43     maintainers = with maintainers; [ fab ];
44   };