superfile: 1.1.6 -> 1.1.7 (#371308)
[NixPkgs.git] / pkgs / development / python-modules / btrfsutil / default.nix
blob8638ea25a6e84752dbacfdd43b57f8cae8b8e8e8
2   lib,
3   buildPythonPackage,
4   btrfs-progs,
5 }:
6 buildPythonPackage {
7   pname = "btrfsutil";
8   inherit (btrfs-progs) version src;
9   format = "setuptools";
11   buildInputs = [ btrfs-progs ];
13   preConfigure = ''
14     cd libbtrfsutil/python
15   '';
17   # No tests
18   doCheck = false;
19   pythonImportsCheck = [ "btrfsutil" ];
21   meta = with lib; {
22     description = "Library for managing Btrfs filesystems";
23     homepage = "https://btrfs.wiki.kernel.org/";
24     license = licenses.lgpl21Plus;
25     maintainers = with maintainers; [
26       raskin
27       lopsided98
28     ];
29   };