mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-25 17:55:21 +00:00
Merge pull request #119680 from alyssais/hyperkitty
This commit is contained in:
@@ -1,13 +1,24 @@
|
||||
{ buildPythonPackage, fetchPypi, atpublic }:
|
||||
{ lib, buildPythonPackage, fetchPypi, pytestCheckHook
|
||||
, atpublic, psutil, pytestcov, sybil
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "flufl.lock";
|
||||
version = "3.2";
|
||||
|
||||
propagatedBuildInputs = [ atpublic ];
|
||||
version = "5.0.5";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0nzzd6l30ff6cwsrlrb94xzfja4wkyrqv3ydc6cz0hdbr766mmm8";
|
||||
sha256 = "1bnapkg99r6mixn3kh314bqcfk8q54y0cvhjpj87j7dhjpsakfpz";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ atpublic psutil ];
|
||||
checkInputs = [ pytestCheckHook pytestcov sybil ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://flufllock.readthedocs.io/";
|
||||
description = "NFS-safe file locking with timeouts for POSIX and Windows";
|
||||
maintainers = with maintainers; [ qyliss ];
|
||||
license = licenses.asl20;
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user