02dab4ab5c
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
21 lines
495 B
Nix
21 lines
495 B
Nix
{ lib, buildPythonPackage, fetchPypi }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pypblib";
|
|
version = "0.0.4";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0qlhykm9flj6cv3v0b9q40gy21yz0lnp0wxlxvb3ijkpy45r7pbi";
|
|
};
|
|
|
|
pythonImportsCheck = [ "pypblib" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://pypi.org/project/pypblib/";
|
|
description = "PBLib Python3 Bindings";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.marius851000 ];
|
|
};
|
|
}
|