python3Packages.flit-core: 2.3.0 -> 3.2.0
This commit is contained in:
parent
a31eaddb60
commit
0ece8a56bd
2 changed files with 10 additions and 2 deletions
|
@ -3,12 +3,13 @@
|
|||
, flit
|
||||
, isPy3k
|
||||
, toml
|
||||
, pytestCheckHook
|
||||
, testpath
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "flit-core";
|
||||
version = "2.3.0";
|
||||
disabled = !isPy3k;
|
||||
version = "3.2.0";
|
||||
format = "pyproject";
|
||||
|
||||
inherit (flit) src patches;
|
||||
|
@ -21,6 +22,11 @@ buildPythonPackage rec {
|
|||
toml
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
testpath
|
||||
];
|
||||
|
||||
passthru.tests = {
|
||||
inherit flit;
|
||||
};
|
||||
|
|
|
@ -32,6 +32,8 @@ with self; with super; {
|
|||
|
||||
feedparser = callPackage ../development/python-modules/feedparser/5.nix { };
|
||||
|
||||
flit-core = disabled super.flit-core;
|
||||
|
||||
fontforge = disabled super.fontforge;
|
||||
|
||||
gaia = disabledIf (isPyPy || isPy3k) (toPythonModule (pkgs.gaia.override {
|
||||
|
|
Loading…
Reference in a new issue