blob: bd48a212f19c6da075fcca5a19594db9fd275c41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{
lib,
buildPythonPackage,
flit,
}:
buildPythonPackage rec {
pname = "flit-core";
inherit (flit) version;
pyproject = true;
inherit (flit) src patches;
postPatch = "cd flit_core";
# Tests are run in the "flit" package.
doCheck = false;
passthru.tests = {
inherit flit;
};
meta = {
description = "Distribution-building parts of Flit. See flit package for more information";
homepage = "https://github.com/pypa/flit";
changelog = "https://github.com/pypa/flit/blob/${src.rev}/doc/history.rst";
license = lib.licenses.bsd3;
teams = [ lib.teams.python ];
};
}
|