nixpkgs/pkgs/development/python-modules/flit/default.nix
Frederik Rietdijk 5772ac5a75 Removing FRidh as active maintainer of packages
In the past I was very active with Python packaging.
For several years now I was hardly around as maintainer,
so it does not make sense I am listed as a maintainer for
these makes. Looking back, I should have removed myself
as maintainer already much longer ago. Anyway, better late
than never.

It's been a fun ride, and  I do intend to occasionally contribute
to Nixpkgs, but not in the same way it once was.
2024-04-28 12:20:07 +02:00

61 lines
1.3 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, docutils
, requests
, pytestCheckHook
, testpath
, responses
, flit-core
, tomli-w
}:
# 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 = "3.9.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "takluyver";
repo = "flit";
rev = version;
hash = "sha256-yl2+PcKr7xRW4oIBWl+gzh/nKhSNu5GH9fWKRGgaNHU=";
};
nativeBuildInputs = [
flit-core
];
propagatedBuildInputs = [
docutils
requests
flit-core
tomli-w
];
nativeCheckInputs = [ pytestCheckHook testpath responses ];
disabledTests = [
# needs some ini file.
"test_invalid_classifier"
# calls pip directly. disabled for PEP 668
"test_install_data_dir"
"test_install_module_pep621"
"test_symlink_data_dir"
"test_symlink_module_pep621"
];
meta = with lib; {
changelog = "https://github.com/pypa/flit/blob/${version}/doc/history.rst";
description = "A simple packaging tool for simple packages";
mainProgram = "flit";
homepage = "https://github.com/pypa/flit";
license = licenses.bsd3;
};
}