nixpkgs/pkgs/development/python-modules/btrfs/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
606 B
Nix
Raw Normal View History

{
lib,
2020-05-05 00:08:42 +00:00
buildPythonPackage,
fetchPypi,
2020-05-05 00:08:42 +00:00
}:
buildPythonPackage rec {
pname = "btrfs";
2024-05-07 11:51:38 +00:00
version = "14.1";
format = "setuptools";
2020-05-05 00:08:42 +00:00
src = fetchPypi {
inherit pname version;
2024-05-07 11:51:38 +00:00
hash = "sha256-BPKPwT33i8fQYJkUZbnJ8nQNbmKw0Dq6ekb9mr7awEY=";
2020-05-05 00:08:42 +00:00
};
# no tests (in v12)
doCheck = false;
pythonImportsCheck = [ "btrfs" ];
meta = with lib; {
2020-05-05 00:08:42 +00:00
description = "Inspect btrfs filesystems";
homepage = "https://github.com/knorrie/python-btrfs";
license = licenses.lgpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [
evils
Luflosi
];
2020-05-05 00:08:42 +00:00
};
}