python311Packages.aiotractive: refactor

This commit is contained in:
Fabian Affolter 2024-01-14 10:28:29 +01:00
parent 9ab154949f
commit ca904d847e

View File

@ -3,22 +3,28 @@
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, setuptools
, yarl
}:
buildPythonPackage rec {
pname = "aiotractive";
version = "0.5.7";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "zhulik";
repo = pname;
rev = "v${version}";
repo = "aiotractive";
rev = "refs/tags/v${version}";
hash = "sha256-fIdIFG1OpAN1R2L2RryTzYZyqGLo3tqAAkRC8UUFM4k=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
aiohttp
yarl
@ -27,7 +33,9 @@ buildPythonPackage rec {
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "aiotractive" ];
pythonImportsCheck = [
"aiotractive"
];
meta = with lib; {
changelog = "https://github.com/zhulik/aiotractive/releases/tag/v${version}";