Files
nixpkgs/pkgs/development/python-modules/flit-scm/default.nix
T
Martin Weinelt 8056f9250c treewide: remove redundant SETUPTOOLS_SCM_PRETEND_VERSION usage
The setuptools-scm packages gained a setup hook, that sets it to the
derivation version automatically, so setting it to that manually has
become redundant.

This also affects downstream consumers of setuptools-scm, like hatch-vcs
or flit-scm.
2023-12-20 20:16:39 +01:00

50 lines
1017 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 = "A 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 ];
};
}