tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python311Packages.rmscene: init at 0.5.0
Robert Schütz
2 years ago
9554b11f
612f9723
+49
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
rmscene
default.nix
top-level
python-packages.nix
+47
pkgs/development/python-modules/rmscene/default.nix
···
1
1
+
{ lib
2
2
+
, buildPythonPackage
3
3
+
, pythonOlder
4
4
+
, fetchFromGitHub
5
5
+
, poetry-core
6
6
+
, packaging
7
7
+
, hypothesis
8
8
+
, pytestCheckHook
9
9
+
}:
10
10
+
11
11
+
buildPythonPackage rec {
12
12
+
pname = "rmscene";
13
13
+
version = "0.5.0";
14
14
+
pyproject = true;
15
15
+
16
16
+
disabled = pythonOlder "3.10";
17
17
+
18
18
+
src = fetchFromGitHub {
19
19
+
owner = "ricklupton";
20
20
+
repo = "rmscene";
21
21
+
rev = "v${version}";
22
22
+
hash = "sha256-uIvoKdW7caOfc8OEGIcyDwyos9NLwtZ++CeZdUO/G8M=";
23
23
+
};
24
24
+
25
25
+
nativeBuildInputs = [
26
26
+
poetry-core
27
27
+
];
28
28
+
29
29
+
propagatedBuildInputs = [
30
30
+
packaging
31
31
+
];
32
32
+
33
33
+
pythonImportsCheck = [ "rmscene" ];
34
34
+
35
35
+
nativeCheckInputs = [
36
36
+
hypothesis
37
37
+
pytestCheckHook
38
38
+
];
39
39
+
40
40
+
meta = {
41
41
+
changelog = "https://github.com/ricklupton/rmscene/blob/${src.rev}/README.md#changelog";
42
42
+
description = "Read v6 .rm files from the reMarkable tablet";
43
43
+
homepage = "https://github.com/ricklupton/rmscene";
44
44
+
license = lib.licenses.mit;
45
45
+
maintainers = with lib.maintainers; [ dotlambda ];
46
46
+
};
47
47
+
}
+2
pkgs/top-level/python-packages.nix
···
12682
12682
12683
12683
rmrl = callPackage ../development/python-modules/rmrl { };
12684
12684
12685
12685
+
rmscene = callPackage ../development/python-modules/rmscene { };
12686
12686
+
12685
12687
rmsd = callPackage ../development/python-modules/rmsd { };
12686
12688
12687
12689
rnc2rng = callPackage ../development/python-modules/rnc2rng { };