summary refs log tree commit diff
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@users.noreply.github.com>2019-02-16 00:36:06 +0000
committerGitHub <noreply@github.com>2019-02-16 00:36:06 +0000
commit69ac268a4e6dc063f8b53c8e402c0c607cf03e2b (patch)
treeee1c6dac2ab932902e572286868ab7b2535c4ad0
parent3ec24a0abfba894a5e3d054230f0f9bff09a14f0 (diff)
parent0e8ab58f459b49e968ecbc312175a062af2776f9 (diff)
downloadnixpkgs-69ac268a4e6dc063f8b53c8e402c0c607cf03e2b.tar
nixpkgs-69ac268a4e6dc063f8b53c8e402c0c607cf03e2b.tar.gz
nixpkgs-69ac268a4e6dc063f8b53c8e402c0c607cf03e2b.tar.bz2
nixpkgs-69ac268a4e6dc063f8b53c8e402c0c607cf03e2b.tar.lz
nixpkgs-69ac268a4e6dc063f8b53c8e402c0c607cf03e2b.tar.xz
nixpkgs-69ac268a4e6dc063f8b53c8e402c0c607cf03e2b.tar.zst
nixpkgs-69ac268a4e6dc063f8b53c8e402c0c607cf03e2b.zip
Merge pull request #55858 from r-ryantm/auto-update/python3.7-llfuse
python37Packages.llfuse: 1.3.5 -> 1.3.6
-rw-r--r--pkgs/development/python-modules/llfuse/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/llfuse/default.nix b/pkgs/development/python-modules/llfuse/default.nix
index 21ea6de02f1..7f9aa3fa2e4 100644
--- a/pkgs/development/python-modules/llfuse/default.nix
+++ b/pkgs/development/python-modules/llfuse/default.nix
@@ -4,12 +4,12 @@
 
 buildPythonPackage rec {
   pname = "llfuse";
-  version = "1.3.5";
+  version = "1.3.6";
   name = pname + "-" + version;
 
   src = fetchurl {
     url = "mirror://pypi/l/llfuse/${name}.tar.bz2";
-    sha256 = "6e412a3d9be69162d49b8a4d6fb3c343d1c1fba847f4535d229e0ece2548ead8";
+    sha256 = "1j9fzxpgmb4rxxyl9jcf84zvznhgi3hnh4hg5vb0qaslxkvng8ii";
   };
 
   nativeBuildInputs = [ pkgconfig ];
@@ -24,7 +24,7 @@ buildPythonPackage rec {
 
   meta = with stdenv.lib; {
     description = "Python bindings for the low-level FUSE API";
-    homepage = https://code.google.com/p/python-llfuse/;
+    homepage = https://github.com/python-llfuse/python-llfuse;
     license = licenses.lgpl2Plus;
     platforms = platforms.unix;
     maintainers = with maintainers; [ bjornfor ];