nixpkgs-suyu/pkgs/development/python-modules/flit/default.nix

62 lines
1.3 KiB
Nix
Raw Normal View History

{ lib
, buildPythonPackage
2020-11-29 15:04:28 +01:00
, fetchFromGitHub
, fetchpatch
, isPy3k
, docutils
, requests
, requests_download
, zipfile36
, pythonOlder
2020-08-29 09:49:33 +02:00
, pytest
, testpath
, responses
2020-05-09 11:17:42 +02:00
, flit-core
}:
# Flit is actually an application to build universal wheels.
# It requires Python 3 and should eventually be moved outside of
# python-packages.nix. When it will be used to build wheels,
# care should be taken that there is no mingling of PYTHONPATH.
buildPythonPackage rec {
pname = "flit";
2021-03-24 16:01:34 +01:00
version = "3.2.0";
2020-11-29 16:00:54 +01:00
format = "pyproject";
2020-11-29 15:04:28 +01:00
src = fetchFromGitHub {
owner = "takluyver";
repo = "flit";
rev = version;
2021-03-24 16:01:34 +01:00
sha256 = "sha256-zN+/oAyXBo6Ho7n/xhOQ2mjtPGKA1anCvl3sVf7t+Do=";
};
2020-11-29 16:00:54 +01:00
nativeBuildInputs = [
flit-core
];
2020-05-09 11:17:42 +02:00
propagatedBuildInputs = [
docutils
requests
requests_download
flit-core
] ++ lib.optionals (pythonOlder "3.6") [
zipfile36
];
2020-08-29 09:49:33 +02:00
checkInputs = [ pytest testpath responses ];
# Disable test that needs some ini file.
2017-12-30 12:22:59 +01:00
# Disable test that wants hg
checkPhase = ''
HOME=$(mktemp -d) pytest -k "not test_invalid_classifier and not test_build_sdist"
'';
meta = with lib; {
description = "A simple packaging tool for simple packages";
homepage = "https://github.com/takluyver/flit";
license = licenses.bsd3;
maintainers = [ maintainers.fridh ];
};
}