about summary refs log tree commit diff
path: root/nixpkgs
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2021-04-17 00:59:46 +0000
committerAlyssa Ross <hi@alyssa.is>2021-06-09 14:51:03 +0000
commit5a32821fc7ad6f51c79d390835f77d3b116a8066 (patch)
tree966f06ab2a53ffde6304babb57f51dc20b564147 /nixpkgs
parentc6f6369413505a51ee3c849a98a34610f917e494 (diff)
downloadnixlib-5a32821fc7ad6f51c79d390835f77d3b116a8066.tar
nixlib-5a32821fc7ad6f51c79d390835f77d3b116a8066.tar.gz
nixlib-5a32821fc7ad6f51c79d390835f77d3b116a8066.tar.bz2
nixlib-5a32821fc7ad6f51c79d390835f77d3b116a8066.tar.lz
nixlib-5a32821fc7ad6f51c79d390835f77d3b116a8066.tar.xz
nixlib-5a32821fc7ad6f51c79d390835f77d3b116a8066.tar.zst
nixlib-5a32821fc7ad6f51c79d390835f77d3b116a8066.zip
python3.pkgs.flufl_lock: add meta; adopt
(cherry picked from commit d555a13ff10677c1db1ed2605051860f63453b06)
Diffstat (limited to 'nixpkgs')
-rw-r--r--nixpkgs/pkgs/development/python-modules/flufl/lock.nix10
1 files changed, 9 insertions, 1 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/flufl/lock.nix b/nixpkgs/pkgs/development/python-modules/flufl/lock.nix
index 53a2da3d79bd..b44a7f3cdfee 100644
--- a/nixpkgs/pkgs/development/python-modules/flufl/lock.nix
+++ b/nixpkgs/pkgs/development/python-modules/flufl/lock.nix
@@ -1,4 +1,4 @@
-{ buildPythonPackage, fetchPypi, pytestCheckHook
+{ lib, buildPythonPackage, fetchPypi, pytestCheckHook
 , atpublic, psutil, pytestcov, sybil
 }:
 
@@ -13,4 +13,12 @@ buildPythonPackage rec {
 
   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;
+  };
 }