aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/flit/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/flit/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/flit/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/flit/default.nix b/nixpkgs/pkgs/development/python-modules/flit/default.nix
index 64decd9c41c..22bba39ff01 100644
--- a/nixpkgs/pkgs/development/python-modules/flit/default.nix
+++ b/nixpkgs/pkgs/development/python-modules/flit/default.nix
@@ -7,7 +7,7 @@
, requests_download
, zipfile36
, pythonOlder
-, pytest
+, pytest_4
, testpath
, responses
, pytoml
@@ -21,17 +21,17 @@
buildPythonPackage rec {
pname = "flit";
version = "1.3";
+ disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "6f6f0fb83c51ffa3a150fa41b5ac118df9ea4a87c2c06dff4ebf9adbe7b52b36";
};
- disabled = !isPy3k;
propagatedBuildInputs = [ docutils requests requests_download pytoml ]
++ lib.optional (pythonOlder "3.6") zipfile36;
- checkInputs = [ pytest testpath responses ];
+ checkInputs = [ pytest_4 testpath responses ];
# Disable test that needs some ini file.
# Disable test that wants hg
@@ -39,10 +39,10 @@ buildPythonPackage rec {
HOME=$(mktemp -d) pytest -k "not test_invalid_classifier and not test_build_sdist"
'';
- meta = {
+ meta = with lib; {
description = "A simple packaging tool for simple packages";
homepage = https://github.com/takluyver/flit;
- license = lib.licenses.bsd3;
- maintainers = [ lib.maintainers.fridh ];
+ license = licenses.bsd3;
+ maintainers = [ maintainers.fridh ];
};
}