Skip to content

Commit e750961

Browse files
committedMay 7, 2017
pythonPackages.llfuse-0-41: move into attic
because that's the only expression using this older version.
1 parent afad430 commit e750961

File tree

2 files changed

+28
-26
lines changed

2 files changed

+28
-26
lines changed
 

‎pkgs/tools/backup/attic/default.nix

+28-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,32 @@
1-
{ stdenv, fetchzip, python3Packages, openssl, acl }:
1+
{ stdenv, fetchzip, python3Packages, openssl, acl, fetchurl, pkgconfig, fuse, attr, which }:
22

3-
python3Packages.buildPythonApplication rec {
3+
let
4+
5+
# Old version needed for attic (backup program) due to breaking change in
6+
# llfuse >= 0.42.
7+
llfuse-0-41 = python3Packages.buildPythonPackage rec {
8+
name = "llfuse-0.41.1";
9+
src = fetchurl {
10+
url = "mirror://pypi/l/llfuse/${name}.tar.bz2";
11+
sha256 = "1imlqw9b73086y97izr036f58pgc5akv4ihc2rrf8j5h75jbrlaa";
12+
};
13+
buildInputs = with python3Packages; [ pytest pkgconfig fuse attr which ];
14+
propagatedBuildInputs = with python3Packages; [ contextlib2 ];
15+
checkPhase = ''
16+
py.test
17+
'';
18+
# FileNotFoundError: [Errno 2] No such file or directory: '/usr/bin'
19+
doCheck = false;
20+
meta = {
21+
description = "Python bindings for the low-level FUSE API";
22+
homepage = https://code.google.com/p/python-llfuse/;
23+
license = stdenv.lib.licenses.lgpl2Plus;
24+
platforms = stdenv.lib.platforms.unix;
25+
maintainers = with stdenv.lib.maintainers; [ bjornfor ];
26+
};
27+
};
28+
29+
in python3Packages.buildPythonApplication rec {
430
name = "attic-${version}";
531
version = "0.16";
632
namePrefix = "";

‎pkgs/top-level/python-packages.nix

-24
Original file line numberDiff line numberDiff line change
@@ -13600,30 +13600,6 @@ in {
1360013600
};
1360113601
};
1360213602

13603-
# Old version needed for attic (backup program) due to breaking change in
13604-
# llfuse >= 0.42.
13605-
llfuse-0-41 = buildPythonPackage rec {
13606-
name = "llfuse-0.41.1";
13607-
src = pkgs.fetchurl {
13608-
url = "mirror://pypi/l/llfuse/${name}.tar.bz2";
13609-
sha256 = "1imlqw9b73086y97izr036f58pgc5akv4ihc2rrf8j5h75jbrlaa";
13610-
};
13611-
buildInputs = with self; [ pytest pkgs.pkgconfig pkgs.fuse pkgs.attr pkgs.which ];
13612-
propagatedBuildInputs = with self; [ contextlib2 ];
13613-
checkPhase = ''
13614-
py.test
13615-
'';
13616-
# FileNotFoundError: [Errno 2] No such file or directory: '/usr/bin'
13617-
doCheck = false;
13618-
meta = {
13619-
description = "Python bindings for the low-level FUSE API";
13620-
homepage = https://code.google.com/p/python-llfuse/;
13621-
license = licenses.lgpl2Plus;
13622-
platforms = platforms.unix;
13623-
maintainers = with maintainers; [ bjornfor ];
13624-
};
13625-
};
13626-
1362713603
locustio = buildPythonPackage rec {
1362813604
name = "locustio-0.7.2";
1362913605

0 commit comments

Comments
 (0)
Please sign in to comment.