mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
57 lines
1.2 KiB
Nix
57 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, isPy3k
|
|
, docutils
|
|
, requests
|
|
, requests_download
|
|
, zipfile36
|
|
, pythonOlder
|
|
, pytest_4
|
|
, testpath
|
|
, responses
|
|
, pytoml
|
|
, 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";
|
|
version = "2.3.0";
|
|
disabled = !isPy3k;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "017012b809ec489918afd68af7a70bd7c8c770c87b60159d875c126866e97a4b";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
docutils
|
|
requests
|
|
requests_download
|
|
pytoml
|
|
flit-core
|
|
] ++ lib.optionals (pythonOlder "3.6") [
|
|
zipfile36
|
|
];
|
|
|
|
checkInputs = [ pytest_4 testpath responses ];
|
|
|
|
# Disable test that needs some ini file.
|
|
# 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 ];
|
|
};
|
|
}
|