Merge pull request #326627 from r-ryantm/auto-update/python312Packages.pylink-square

python312Packages.pylink-square: 1.2.0 -> 1.2.1
This commit is contained in:
OTABI Tomoya 2024-07-15 13:59:47 +09:00 committed by GitHub
commit f193f9477c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
mock,
psutil,
pytestCheckHook,
@ -11,8 +12,8 @@
buildPythonPackage rec {
pname = "pylink-square";
version = "1.2.0";
format = "setuptools";
version = "1.2.1";
pyproject = true;
disabled = pythonOlder "3.7";
@ -20,10 +21,12 @@ buildPythonPackage rec {
owner = "square";
repo = "pylink";
rev = "refs/tags/v${version}";
hash = "sha256-rcM7gvUUfXN5pL9uIihzmOCXA7NKjiMt2GaQaGJxD9M=";
hash = "sha256-WMpb/b9kF1rFlegDYxNGJbZ2Nz8nuG21tyjgUFLs5mg=";
};
propagatedBuildInputs = [
build-system = [ setuptools ];
dependencies = [
psutil
six
];