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
-
{ lib
2
-
, buildPythonPackage
3
-
, cython
4
-
, fetchFromGitHub
5
-
, ply
6
-
, pythonOlder
7
-
, six
8
-
, setuptools
9
-
, tornado
0
10
}:
11
12
buildPythonPackage rec {
···
23
hash = "sha256-Pjy9OPwFfKaw+XVl7IbbAKPz050TlqI4+yLqSITOkSY=";
24
};
25
26
-
build-system = [
27
-
setuptools
28
-
];
29
30
-
nativeBuildInputs = [
31
-
cython
32
-
];
33
34
dependencies = [
35
ply
···
40
# Not all needed files seems to be present
41
doCheck = false;
42
43
-
pythonImportsCheck = [
44
-
"thriftpy2"
45
-
];
46
47
meta = with lib; {
48
description = "Python module for Apache Thrift";
···
1
+
{
2
+
lib,
3
+
buildPythonPackage,
4
+
cython,
5
+
fetchFromGitHub,
6
+
ply,
7
+
pythonOlder,
8
+
six,
9
+
setuptools,
10
+
tornado,
11
}:
12
13
buildPythonPackage rec {
···
24
hash = "sha256-Pjy9OPwFfKaw+XVl7IbbAKPz050TlqI4+yLqSITOkSY=";
25
};
26
27
+
build-system = [ setuptools ];
0
0
28
29
+
nativeBuildInputs = [ cython ];
0
0
30
31
dependencies = [
32
ply
···
37
# Not all needed files seems to be present
38
doCheck = false;
39
40
+
pythonImportsCheck = [ "thriftpy2" ];
0
0
41
42
meta = with lib; {
43
description = "Python module for Apache Thrift";