Skip to content

Commit

Permalink
python312Packages.pyotgw: 2.1.3 -> 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fabaff committed Apr 30, 2024
1 parent 38cc393 commit 53e88a7
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions pkgs/development/python-modules/pyotgw/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,33 @@
, buildPythonPackage
, fetchFromGitHub
, pyserial-asyncio
, pyserial-asyncio-fast
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, setuptools
}:

buildPythonPackage rec {
pname = "pyotgw";
version = "2.1.3";
format = "setuptools";
version = "2.2.0";
pyproject = true;

disabled = pythonOlder "3.8";

src = fetchFromGitHub {
owner = "mvn23";
repo = pname;
repo = "pyotgw";
rev = "refs/tags/${version}";
hash = "sha256-XIwBGjvIulKLmYZIorKIJwoHTNOIYYX8US2Na8MZ2LA=";
hash = "sha256-SowM+glni1PGkM87JT9+QWTD4Tu9XmsfXg99GZzSCJM=";
};

propagatedBuildInputs = [
pyserial-asyncio
build-system = [
setuptools
];

dependencies = [
pyserial-asyncio-fast
];

nativeCheckInputs = [
Expand Down

0 comments on commit 53e88a7

Please sign in to comment.