tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.hydrogram: don't use async in tests
cy
11 months ago
dba86153
7a084e6e
+10
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
hydrogram
default.nix
+10
pkgs/development/python-modules/hydrogram/default.nix
reviewed
···
3
3
aiosqlite,
4
4
buildPythonPackage,
5
5
fetchFromGitHub,
6
6
+
fetchpatch2,
6
7
hatchling,
7
8
pyaes,
8
9
pysocks,
···
24
25
tag = "v${version}";
25
26
hash = "sha256-QpweUDCypTxOOWL08gCUuMgbuE4130iNyxRpUNuSBac=";
26
27
};
28
28
+
29
29
+
patches = [
30
30
+
(fetchpatch2 {
31
31
+
name = "fix-async-in-test.patch";
32
32
+
excludes = [ ".github/workflows/code-style.yml" ];
33
33
+
url = "https://github.com/hydrogram/hydrogram/commit/7431319a1d990aa838012bd566a9746da7df2a6e.patch";
34
34
+
hash = "sha256-MPv13cxnNPDD+p9EPjDPFqydGy57oXzLeRxL3lG8JKU=";
35
35
+
})
36
36
+
];
27
37
28
38
build-system = [ hatchling ];
29
39