linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / btrfs / default.nix
blobadaf1f610e35d2e0a9f821c07d8ecf0328aff347
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "btrfs";
8   version = "11";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "1w92sj47wy53ygz725xr613k32pk5khi0g9lrpp6img871241hrx";
13   };
15   meta = with lib; {
16     description = "Inspect btrfs filesystems";
17     homepage = "https://github.com/knorrie/python-btrfs";
18     license = licenses.lgpl3Plus;
19     platforms = platforms.linux;
20     maintainers = [ maintainers.evils ];
21   };