tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.uc-micro-py: 1.0.1 -> 1.0.2
Martin Weinelt
2 years ago
13f2cc97
91410ef0
+17
-7
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
uc-micro-py
default.nix
+17
-7
pkgs/development/python-modules/uc-micro-py/default.nix
···
3
3
, fetchFromGitHub
4
4
, pythonOlder
5
5
, pytestCheckHook
6
6
+
, setuptools
6
7
}:
7
8
8
9
buildPythonPackage rec {
9
10
pname = "uc-micro-py";
10
10
-
version = "1.0.1";
11
11
-
format = "setuptools";
11
11
+
version = "1.0.2";
12
12
+
format = "pyproject";
12
13
13
13
-
disabled = pythonOlder "3.6";
14
14
+
disabled = pythonOlder "3.7";
14
15
15
16
src = fetchFromGitHub {
16
17
owner = "tsutsu3";
17
18
repo = "uc.micro-py";
18
18
-
rev = "v${version}";
19
19
-
hash = "sha256-23mKwoRGjtxpCOC26V8bAN5QEHLDOoSqPeTlUuIrxZ0=";
19
19
+
rev = "refs/tags/v${version}";
20
20
+
hash = "sha256-PUeWYG/VyxCfhB7onAcDFow1yYqArjmfMT99+058P7U=";
20
21
};
21
22
22
22
-
nativeCheckInputs = [ pytestCheckHook ];
23
23
-
pythonImportsCheck = [ "uc_micro" ];
23
23
+
nativeBuildInputs = [
24
24
+
setuptools
25
25
+
];
26
26
+
27
27
+
pythonImportsCheck = [
28
28
+
"uc_micro"
29
29
+
];
30
30
+
31
31
+
nativeCheckInputs = [
32
32
+
pytestCheckHook
33
33
+
];
24
34
25
35
meta = with lib; {
26
36
description = "Micro subset of unicode data files for linkify-it-py";