python311Packages.pykaleidescape: refactor

This commit is contained in:
Fabian Affolter 2024-03-14 17:19:24 +01:00
parent c18d322dc6
commit 28897450f4

View File

@ -7,22 +7,27 @@
, pytestCheckHook
, pythonAtLeast
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "pykaleidescape";
version = "1.0.1";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "SteveEasley";
repo = pname;
repo = "pykaleidescape";
rev = "refs/tags/v${version}";
hash = "sha256-KM/gtpsQ27QZz2uI1t/yVN5no0zp9LZag1duAJzK55g=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
aiohttp
dnspython