python3Packages.flit: 3.0.0 -> 3.2.0

This commit is contained in:
Frederik Rietdijk 2021-03-24 16:01:34 +01:00
parent 0ece8a56bd
commit faca299129
2 changed files with 4 additions and 12 deletions

View file

@ -21,30 +21,20 @@
buildPythonPackage rec {
pname = "flit";
version = "3.0.0";
disabled = !isPy3k;
version = "3.2.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "takluyver";
repo = "flit";
rev = version;
sha256 = "zk6mozS3Q9U43PQe/DxgwwsBRJ6Qwb+rSUVGXHijD+g=";
sha256 = "sha256-zN+/oAyXBo6Ho7n/xhOQ2mjtPGKA1anCvl3sVf7t+Do=";
};
nativeBuildInputs = [
flit-core
];
# Use toml instead of pytoml
# Resolves infinite recursion since packaging started using flit.
patches = [
(fetchpatch {
url = "https://github.com/takluyver/flit/commit/b81b1da55ef0f2768413669725d2874fcb0c29fb.patch";
sha256 = "11oNaYsm00/j2046V9C0idpSeG7TpY3JtLuxX3ZL/OI=";
})
];
propagatedBuildInputs = [
docutils
requests

View file

@ -32,6 +32,8 @@ with self; with super; {
feedparser = callPackage ../development/python-modules/feedparser/5.nix { };
flit = disabled super.flit;
flit-core = disabled super.flit-core;
fontforge = disabled super.fontforge;