Merge pull request #290712 from fabaff/myuplink-bump

python311Packages.myuplink: 0.3.0 -> 0.4.0
This commit is contained in:
Fabian Affolter 2024-02-23 08:26:11 +01:00 committed by GitHub
commit ea7b7d9a2c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,7 +8,7 @@
buildPythonPackage rec {
pname = "myuplink";
version = "0.3.0";
version = "0.4.0";
pyproject = true;
disabled = pythonOlder "3.8";
@ -17,9 +17,14 @@ buildPythonPackage rec {
owner = "pajzo";
repo = "myuplink";
rev = "refs/tags/${version}";
hash = "sha256-XDsQmgP3VvWpuZWGBVW5pBsxTRZT2cl3kp1i2sb+LnM=";
hash = "sha256-xITV5+d/9j8pjfvmnt8RfGHu4lfLu8cMFV0MzURy6hA=";
};
postPatch = ''
substituteInPlace setup.cfg \
--replace-fail "%%VERSION_NO%%" "${version}"
'';
nativeBuildInputs = [
setuptools
];