mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-14 13:39:15 +03:00
mutmut: Migrate out of python package set
Does not provide a library interface that could be imported and as such has no place within the python package set.
This commit is contained in:
parent
565a8187a4
commit
98de11b317
4 changed files with 5 additions and 11 deletions
|
@ -1,16 +1,9 @@
|
||||||
{ lib
|
{ lib
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, buildPythonApplication
|
, python3
|
||||||
, click
|
|
||||||
, glob2
|
|
||||||
, parso
|
|
||||||
, pony
|
|
||||||
, junit-xml
|
|
||||||
, pythonOlder
|
|
||||||
, testers
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let self = buildPythonApplication rec {
|
let self = with python3.pkgs; buildPythonApplication rec {
|
||||||
pname = "mutmut";
|
pname = "mutmut";
|
||||||
version = "2.2.0";
|
version = "2.2.0";
|
||||||
|
|
|
@ -737,6 +737,8 @@ with pkgs;
|
||||||
|
|
||||||
owl = callPackage ../tools/networking/owl { };
|
owl = callPackage ../tools/networking/owl { };
|
||||||
|
|
||||||
|
mutmut = callPackage ../development/tools/mutmut { };
|
||||||
|
|
||||||
packcc = callPackage ../development/tools/packcc { };
|
packcc = callPackage ../development/tools/packcc { };
|
||||||
|
|
||||||
packer = callPackage ../development/tools/packer { };
|
packer = callPackage ../development/tools/packer { };
|
||||||
|
|
|
@ -101,6 +101,7 @@ mapAliases ({
|
||||||
mailman-web = throw "Please use pkgs.mailman-web"; # added 2022-04-29
|
mailman-web = throw "Please use pkgs.mailman-web"; # added 2022-04-29
|
||||||
mistune_0_8 = throw "mistune_0_8 was removed because it was outdated and insecure"; # added 2022-08-12
|
mistune_0_8 = throw "mistune_0_8 was removed because it was outdated and insecure"; # added 2022-08-12
|
||||||
mistune_2_0 = mistune; # added 2022-08-12
|
mistune_2_0 = mistune; # added 2022-08-12
|
||||||
|
mutmut = throw "mutmut has been promoted to a top-level attribute"; # added 2022-10-02
|
||||||
net2grid = gridnet; # add 2022-04-22
|
net2grid = gridnet; # add 2022-04-22
|
||||||
nose-cover3 = throw "nose-cover3 has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-02-16
|
nose-cover3 = throw "nose-cover3 has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-02-16
|
||||||
ordereddict = throw "ordereddict has been removed because it is only useful on unsupported python versions."; # added 2022-05-28
|
ordereddict = throw "ordereddict has been removed because it is only useful on unsupported python versions."; # added 2022-05-28
|
||||||
|
|
|
@ -5950,8 +5950,6 @@ in {
|
||||||
|
|
||||||
mutf8 = callPackage ../development/python-modules/mutf8 { };
|
mutf8 = callPackage ../development/python-modules/mutf8 { };
|
||||||
|
|
||||||
mutmut = callPackage ../development/python-modules/mutmut { };
|
|
||||||
|
|
||||||
mujson = callPackage ../development/python-modules/mujson { };
|
mujson = callPackage ../development/python-modules/mujson { };
|
||||||
|
|
||||||
mwclient = callPackage ../development/python-modules/mwclient { };
|
mwclient = callPackage ../development/python-modules/mwclient { };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue