mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
python3Packages.filelock: 3.20.3 -> 3.29.0
Diff: https://github.com/tox-dev/filelock/compare/3.20.3...3.29.0 Changelog: https://github.com/tox-dev/py-filelock/releases/tag/3.29.0
This commit is contained in:
parent
ed3453c694
commit
ddb28fa0cb
1 changed files with 8 additions and 6 deletions
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
fetchFromGitHub,
|
||||
hatch-vcs,
|
||||
hatchling,
|
||||
pytest-asyncio,
|
||||
|
|
@ -12,12 +12,14 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "filelock";
|
||||
version = "3.20.3";
|
||||
version = "3.29.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-GMV+6RXH7GHP8Oz38Phpk2x8MBkbsM9AbxNBd40INOE=";
|
||||
src = fetchFromGitHub {
|
||||
owner = "tox-dev";
|
||||
repo = "filelock";
|
||||
tag = version;
|
||||
hash = "sha256-efBEyjuCcLkHsfpG61eKN6ALk4QW4UMdNmD56rSgFLc=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
|
|
@ -43,7 +45,7 @@ buildPythonPackage rec {
|
|||
changelog = "https://github.com/tox-dev/py-filelock/releases/tag/${version}";
|
||||
description = "Platform independent file lock for Python";
|
||||
homepage = "https://github.com/benediktschmitt/py-filelock";
|
||||
license = lib.licenses.unlicense;
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ ];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue