tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.thriftpy2: format with nixfmt
Fabian Affolter
2 years ago
38db716f
bd99afd3
+13
-18
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
thriftpy2
default.nix
+13
-18
pkgs/development/python-modules/thriftpy2/default.nix
···
1
1
-
{ lib
2
2
-
, buildPythonPackage
3
3
-
, cython
4
4
-
, fetchFromGitHub
5
5
-
, ply
6
6
-
, pythonOlder
7
7
-
, six
8
8
-
, setuptools
9
9
-
, tornado
1
1
+
{
2
2
+
lib,
3
3
+
buildPythonPackage,
4
4
+
cython,
5
5
+
fetchFromGitHub,
6
6
+
ply,
7
7
+
pythonOlder,
8
8
+
six,
9
9
+
setuptools,
10
10
+
tornado,
10
11
}:
11
12
12
13
buildPythonPackage rec {
···
23
24
hash = "sha256-Pjy9OPwFfKaw+XVl7IbbAKPz050TlqI4+yLqSITOkSY=";
24
25
};
25
26
26
26
-
build-system = [
27
27
-
setuptools
28
28
-
];
27
27
+
build-system = [ setuptools ];
29
28
30
30
-
nativeBuildInputs = [
31
31
-
cython
32
32
-
];
29
29
+
nativeBuildInputs = [ cython ];
33
30
34
31
dependencies = [
35
32
ply
···
40
37
# Not all needed files seems to be present
41
38
doCheck = false;
42
39
43
43
-
pythonImportsCheck = [
44
44
-
"thriftpy2"
45
45
-
];
40
40
+
pythonImportsCheck = [ "thriftpy2" ];
46
41
47
42
meta = with lib; {
48
43
description = "Python module for Apache Thrift";