python311Packages.fjaraskupan: refactor

This commit is contained in:
Fabian Affolter 2024-03-28 12:26:48 +01:00
parent 0d66ff03de
commit 12935503a7
1 changed files with 8 additions and 3 deletions

View File

@ -5,23 +5,28 @@
, pytest-mock
, pytestCheckHook
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "fjaraskupan";
version = "2.3.0";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "elupus";
repo = pname;
repo = "fjaraskupan";
rev = "refs/tags/${version}";
hash = "sha256-3jw42lsCwNkFptMNpnhtbrPIkZP/8lUCcMigzq8Hbc4=";
};
propagatedBuildInputs = [
nativeBuildInputs = [
setuptools
];
dependencies = [
bleak
];