nixpkgs/pkgs/development/python-modules/vcver/default.nix
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

35 lines
767 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, packaging
}:
buildPythonPackage rec {
pname = "vcver";
version = "0.2.12";
format = "setuptools";
src = fetchFromGitHub {
owner = "toumorokoshi";
repo = "vcver-python";
rev = "c5d8a6f1f0e49bb25f5dbb07312e42cb4da096d6";
sha256 = "1cvgs70jf7ki78338zaglaw2dkvyndmx15ybd6k4zqwwsfgk490b";
};
propagatedBuildInputs = [
packaging
];
# circular dependency on test tool uranium https://pypi.org/project/uranium/
doCheck = false;
pythonImportsCheck = [ "vcver" ];
meta = with lib; {
description = "Reference Implementation of vcver";
homepage = "https://github.com/toumorokoshi/vcver-python";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};
}