python3Packages.flit: 3.0.0 -> 3.2.0
This commit is contained in:
@@ -21,30 +21,20 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "flit";
|
pname = "flit";
|
||||||
version = "3.0.0";
|
version = "3.2.0";
|
||||||
disabled = !isPy3k;
|
|
||||||
format = "pyproject";
|
format = "pyproject";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "takluyver";
|
owner = "takluyver";
|
||||||
repo = "flit";
|
repo = "flit";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "zk6mozS3Q9U43PQe/DxgwwsBRJ6Qwb+rSUVGXHijD+g=";
|
sha256 = "sha256-zN+/oAyXBo6Ho7n/xhOQ2mjtPGKA1anCvl3sVf7t+Do=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
flit-core
|
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 = [
|
propagatedBuildInputs = [
|
||||||
docutils
|
docutils
|
||||||
requests
|
requests
|
||||||
|
|||||||
@@ -32,6 +32,8 @@ with self; with super; {
|
|||||||
|
|
||||||
feedparser = callPackage ../development/python-modules/feedparser/5.nix { };
|
feedparser = callPackage ../development/python-modules/feedparser/5.nix { };
|
||||||
|
|
||||||
|
flit = disabled super.flit;
|
||||||
|
|
||||||
flit-core = disabled super.flit-core;
|
flit-core = disabled super.flit-core;
|
||||||
|
|
||||||
fontforge = disabled super.fontforge;
|
fontforge = disabled super.fontforge;
|
||||||
|
|||||||
Reference in New Issue
Block a user