depot/third_party/nixpkgs/pkgs/tools/filesystems/rmfuse/default.nix
Default email bb5b50588c Project import generated by Copybara.
GitOrigin-RevId: 9816b99e71c3504b0b4c1f8b2e004148460029d4
2021-02-19 20:06:45 +01:00

26 lines
1 KiB
Nix

{ poetry2nix, pkgs, lib }:
let
pythonPackages = (poetry2nix.mkPoetryPackages {
projectDir = ./.;
overrides = [
poetry2nix.defaultPoetryOverrides
(import ./poetry-git-overlay.nix { inherit pkgs; })
(self: super: {
rmfuse = super.rmfuse.overridePythonAttrs(old: {
meta = old.meta // {
description = "RMfuse provides access to your reMarkable Cloud files in the form of a FUSE filesystem.";
longDescription = ''
RMfuse provides access to your reMarkable Cloud files in the form of a FUSE filesystem. These files are exposed either in their original format, or as PDF files that contain your annotations. This lets you manage files in the reMarkable Cloud using the same tools you use on your local system.
'';
license = lib.licenses.mit;
homepage = "https://github.com/rschroll/rmfuse";
maintainers = [ lib.maintainers.adisbladis ];
};
});
})
];
}).python.pkgs;
in pythonPackages.rmfuse