lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

pythonPackages.python-subtesthack: Move to own file

authored by

Elis Hirwing and committed by
Frederik Rietdijk
1e44e2f0 17f96f38

+23 -20
+22
pkgs/development/python-modules/pytest-subtesthack/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi, pytest }: 2 + 3 + buildPythonPackage rec { 4 + pname = "pytest-subtesthack"; 5 + version = "0.1.1"; 6 + 7 + src = fetchPypi { 8 + inherit pname version; 9 + sha256 = "15kzcr5pchf3id4ikdvlv752rc0j4d912n589l4rifp8qsj19l1x"; 10 + }; 11 + 12 + buildInputs = [ pytest ]; 13 + 14 + # no upstream test 15 + doCheck = false; 16 + 17 + meta = with stdenv.lib; { 18 + description = "Terrible plugin to set up and tear down fixtures within the test function itself"; 19 + homepage = https://github.com/untitaker/pytest-subtesthack; 20 + license = licenses.publicDomain; 21 + }; 22 + }
+1 -20
pkgs/top-level/python-packages.nix
··· 1964 1964 1965 1965 pytest-localserver = callPackage ../development/python-modules/pytest-localserver { }; 1966 1966 1967 - pytest-subtesthack = buildPythonPackage rec { 1968 - name = "pytest-subtesthack-${version}"; 1969 - version = "0.1.1"; 1970 - 1971 - src = pkgs.fetchurl { 1972 - url = "mirror://pypi/p/pytest-subtesthack/${name}.tar.gz"; 1973 - sha256 = "15kzcr5pchf3id4ikdvlv752rc0j4d912n589l4rifp8qsj19l1x"; 1974 - }; 1975 - 1976 - buildInputs = with self; [ pytest ]; 1977 - 1978 - # no upstream test 1979 - doCheck = false; 1980 - 1981 - meta = { 1982 - description = "Terrible plugin to set up and tear down fixtures within the test function itself"; 1983 - homepage = https://github.com/untitaker/pytest-subtesthack; 1984 - license = licenses.publicDomain; 1985 - }; 1986 - }; 1967 + pytest-subtesthack = callPackage ../development/python-modules/pytest-subtesthack { }; 1987 1968 1988 1969 pytest-sugar = callPackage ../development/python-modules/pytest-sugar { }; 1989 1970