Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
46 lines
1008 B
Nix
46 lines
1008 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitLab,
|
|
pythonOlder,
|
|
flit-core,
|
|
setuptools-scm,
|
|
tomli,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "flit-scm";
|
|
version = "1.7.0";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "WillDaSilva";
|
|
repo = "flit_scm";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-2nx9kWq/2TzauOW+c67g9a3JZ2dhBM4QzKyK/sqWOPo=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
flit-core
|
|
setuptools-scm
|
|
]
|
|
++ lib.optionals (pythonOlder "3.11") [ tomli ];
|
|
|
|
propagatedBuildInputs = [
|
|
flit-core
|
|
setuptools-scm
|
|
]
|
|
++ lib.optionals (pythonOlder "3.11") [ tomli ];
|
|
|
|
pythonImportsCheck = [ "flit_scm" ];
|
|
|
|
doCheck = false; # no tests
|
|
|
|
meta = with lib; {
|
|
description = "PEP 518 build backend that uses setuptools_scm to generate a version file from your version control system, then flit to build the package";
|
|
homepage = "https://gitlab.com/WillDaSilva/flit_scm";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ cpcloud ];
|
|
};
|
|
}
|