tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.pytest-describe: init at 2.0.1
Martin Weinelt
3 years ago
4df59460
c58a108a
+42
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
pytest-describe
default.nix
top-level
python-packages.nix
+40
pkgs/development/python-modules/pytest-describe/default.nix
···
1
1
+
{ lib
2
2
+
, buildPythonPackage
3
3
+
, fetchPypi
4
4
+
5
5
+
# build
6
6
+
, pytest
7
7
+
8
8
+
# tests
9
9
+
, pytestCheckHook
10
10
+
}:
11
11
+
12
12
+
let
13
13
+
pname = "pytest-describe";
14
14
+
version = "2.0.1";
15
15
+
in
16
16
+
buildPythonPackage {
17
17
+
inherit pname version;
18
18
+
format = "setuptools";
19
19
+
20
20
+
src = fetchPypi {
21
21
+
inherit pname version;
22
22
+
hash = "sha256-5cuqMRafAGA0itXKAZECfl8fQfPyf97vIINl4JxV65o=";
23
23
+
};
24
24
+
25
25
+
buildInputs = [
26
26
+
pytest
27
27
+
];
28
28
+
29
29
+
checkInputs = [
30
30
+
pytestCheckHook
31
31
+
];
32
32
+
33
33
+
meta = with lib; {
34
34
+
description = "Describe-style plugin for the pytest framework";
35
35
+
homepage = "https://github.com/pytest-dev/pytest-describe";
36
36
+
changelog = "https://github.com/pytest-dev/pytest-describe/releases/tag/${version}";
37
37
+
license = licenses.mit;
38
38
+
maintainers = with maintainers; [ hexa ];
39
39
+
};
40
40
+
}
+2
pkgs/top-level/python-packages.nix
···
7938
7938
7939
7939
pytest-dependency = callPackage ../development/python-modules/pytest-dependency { };
7940
7940
7941
7941
+
pytest-describe = callPackage ../development/python-modules/pytest-describe { };
7942
7942
+
7941
7943
pytest-django = callPackage ../development/python-modules/pytest-django { };
7942
7944
7943
7945
pytest-doctestplus = callPackage ../development/python-modules/pytest-doctestplus { };