tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python.pkgs.pytest_30: remove unused version
Frederik Rietdijk
8 years ago
c0c616b8
b47ff590
-35
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
pytest
3_0.nix
top-level
python-packages.nix
-27
pkgs/development/python-modules/pytest/3_0.nix
···
1
1
-
{ stdenv, buildPythonPackage, fetchPypi, isPy26, argparse, hypothesis, py
2
2
-
, setuptools_scm
3
3
-
}:
4
4
-
buildPythonPackage rec {
5
5
-
version = "3.0.7";
6
6
-
pname = "pytest";
7
7
-
name = "${pname}-${version}";
8
8
-
9
9
-
preCheck = ''
10
10
-
# don't test bash builtins
11
11
-
rm testing/test_argcomplete.py
12
12
-
'';
13
13
-
14
14
-
src = fetchPypi {
15
15
-
inherit pname version;
16
16
-
sha256 = "b70696ebd1a5e6b627e7e3ac1365a4bc60aaf3495e843c1e70448966c5224cab";
17
17
-
};
18
18
-
19
19
-
buildInputs = [ hypothesis setuptools_scm ];
20
20
-
propagatedBuildInputs = [ py ]
21
21
-
++ (stdenv.lib.optional isPy26 argparse);
22
22
-
23
23
-
meta = with stdenv.lib; {
24
24
-
maintainers = with maintainers; [ domenkozar lovek323 madjar lsix ];
25
25
-
platforms = platforms.unix;
26
26
-
};
27
27
-
}
-8
pkgs/top-level/python-packages.nix
···
3251
3251
3252
3252
pytest_29 = callPackage ../development/python-modules/pytest/2_9.nix {};
3253
3253
3254
3254
-
pytest_30 = callPackage ../development/python-modules/pytest/3_0.nix {
3255
3255
-
hypothesis = self.hypothesis.override {
3256
3256
-
# hypothesis requires pytest that causes dependency cycle
3257
3257
-
doCheck = false;
3258
3258
-
pytest = null;
3259
3259
-
};
3260
3260
-
};
3261
3261
-
3262
3254
pytest_32 = callPackage ../development/python-modules/pytest/3_2.nix{
3263
3255
hypothesis = self.hypothesis.override {
3264
3256
# hypothesis requires pytest that causes dependency cycle