Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / ratarmount / default.nix
blob1555dfca2197a3a7e595a1a6af3e2b4a439f6d7d
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 , fusepy
6 , ratarmountcore
7 }:
9 buildPythonPackage rec {
10   pname = "ratarmount";
11   version = "0.14.0";
13   disabled = pythonOlder "3.6";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-P+p0h+KuOsunPsXbRwxzAhr1XcEqMjQxHeHmA29+pDQ=";
18   };
20   propagatedBuildInputs = [ ratarmountcore fusepy ];
22   checkPhase = ''
23     runHook preCheck
25     python tests/tests.py
27     runHook postCheck
28   '';
30   meta = with lib; {
31     description = "Mounts archives as read-only file systems by way of indexing";
32     homepage = "https://github.com/mxmlnkn/ratarmount";
33     license = licenses.mit;
34     maintainers = with lib.maintainers; [ mxmlnkn ];
35     platforms = platforms.all;
36   };