summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorAndrey Golovizin <ag@sologoc.com>2020-12-07 21:03:47 +0100
committerJonathan Ringer <jonringer@users.noreply.github.com>2020-12-08 12:27:01 -0800
commit0bb69986bd7839cfd7f63691891c50d9155c9e16 (patch)
treec1cb3ebf05d3acd58edac3e7b9dd07f7e69a383e /pkgs
parent4a7bcab1d0a61d69688156376d5cdb38d81edff2 (diff)
pythonPackages.llfuse: 1.3.6 -> 1.3.8
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/llfuse/default.nix22
1 files changed, 5 insertions, 17 deletions
diff --git a/pkgs/development/python-modules/llfuse/default.nix b/pkgs/development/python-modules/llfuse/default.nix
index e74a38a96e8f..0480deb401c8 100644
--- a/pkgs/development/python-modules/llfuse/default.nix
+++ b/pkgs/development/python-modules/llfuse/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, fetchpatch, buildPythonPackage, pkgconfig, pytest_5, fuse, attr, which
+{ stdenv, fetchPypi, fetchpatch, buildPythonPackage, pkgconfig, pytest_5, fuse, attr, which
, contextlib2, osxfuse
}:
@@ -8,25 +8,13 @@ in
buildPythonPackage rec {
pname = "llfuse";
- version = "1.3.6";
+ version = "1.3.8";
- src = fetchurl {
- url = "mirror://pypi/l/llfuse/${pname}-${version}.tar.bz2";
- sha256 = "1j9fzxpgmb4rxxyl9jcf84zvznhgi3hnh4hg5vb0qaslxkvng8ii";
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1g2cdhdqrb6m7655qp61pn61pwj1ql61cdzhr2jvl3w4i8877ddr";
};
- patches = [
- # https://github.com/python-llfuse/python-llfuse/pull/23 (2 commits)
- (fetchpatch {
- url = "https://github.com/python-llfuse/python-llfuse/commit/7579b0e626da1a7882b13caedcdbd4a834702e94.diff";
- sha256 = "0vpybj4k222h20lyn0q7hz86ziqlapqs5701cknw8d11jakbhhb0";
- })
- (fetchpatch {
- url = "https://github.com/python-llfuse/python-llfuse/commit/438c00ab9e10d6c485bb054211c01b7f8524a736.diff";
- sha256 = "1zhb05b7k3c9mjqshy9in8yzpbihy7f33x1myq5kdjip1k50cwrn";
- })
- ];
-
nativeBuildInputs = [ pkgconfig ];
buildInputs =
optionals stdenv.isLinux [ fuse ]