python3Packages.flit: 3.2.0 -> 3.6.0

This commit is contained in:
Bernardo Meurer
2022-01-04 14:22:57 -03:00
parent 6b1ea4c5bd
commit f4d0af8cac
2 changed files with 7 additions and 14 deletions
@@ -3,13 +3,12 @@
, fetchFromGitHub
, docutils
, requests
, requests_download
, zipfile36
, pythonOlder
, pytest
, testpath
, responses
, flit-core
, tomli
, tomli-w
}:
# Flit is actually an application to build universal wheels.
@@ -19,14 +18,14 @@
buildPythonPackage rec {
pname = "flit";
version = "3.2.0";
version = "3.6.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "takluyver";
repo = "flit";
rev = version;
sha256 = "sha256-zN+/oAyXBo6Ho7n/xhOQ2mjtPGKA1anCvl3sVf7t+Do=";
sha256 = "sha256-D3q/1g6njrrmizooGmzNd9g2nKs00dMGj9jrrv3Y6HQ=";
};
nativeBuildInputs = [
@@ -36,10 +35,9 @@ buildPythonPackage rec {
propagatedBuildInputs = [
docutils
requests
requests_download
flit-core
] ++ lib.optionals (pythonOlder "3.6") [
zipfile36
tomli
tomli-w
];
checkInputs = [ pytest testpath responses ];