We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 634df81 commit 73a808cCopy full SHA for 73a808c
1 file changed
pkgs/development/python-modules/librt/default.nix
@@ -5,18 +5,19 @@
5
setuptools,
6
mypy-extensions,
7
python,
8
+ pytest,
9
}:
10
11
buildPythonPackage rec {
12
pname = "librt";
- version = "0.7.8";
13
+ version = "0.9.0";
14
pyproject = true;
15
16
src = fetchFromGitHub {
17
owner = "mypyc";
18
repo = "librt";
19
tag = "v${version}";
- hash = "sha256-FlLilZQMsXAYfreBAfYoutCEww8IVoU7jjxvvJr8pTk=";
20
+ hash = "sha256-RZGaOq8hmkwekCs1fKshDrx3vmHdJl/wI3IO9ZLH5rc=";
21
};
22
23
# https://github.com/mypyc/librt/blob/v0.7.8/.github/workflows/buildwheels.yml#L90-L93
@@ -30,6 +31,7 @@ buildPythonPackage rec {
30
31
32
nativeCheckInputs = [
33
mypy-extensions
34
+ pytest
35
];
36
37
checkPhase = ''
0 commit comments