Files
nixpkgs/pkgs/development/python-modules/python-baseconv/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

24 lines
595 B
Nix

{ buildPythonPackage
, fetchPypi
, lib
}:
buildPythonPackage rec {
pname = "python-baseconv";
version = "1.2.2";
format = "setuptools";
src = fetchPypi {
inherit pname version ;
sha256 = "0539f8bd0464013b05ad62e0a1673f0ac9086c76b43ebf9f833053527cd9931b";
};
pythonImportsCheck = [ "baseconv" ];
meta = with lib; {
description = "Python module to convert numbers from base 10 integers to base X strings and back again";
homepage = "https://github.com/semente/python-baseconv";
license = licenses.psfl;
maintainers = with maintainers; [ rakesh4g ];
};
}