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

23 lines
503 B
Nix

{ lib
, buildPythonPackage
, fetchurl
}:
buildPythonPackage {
pname = "pynac";
version = "0.2";
format = "setuptools";
src = fetchurl {
url = "mirror://sourceforge/project/pynac/pynac/pynac-0.2/pynac-0.2.tar.gz";
sha256 = "0avzqqcxl54karjmla9jbsyid98mva36lxahwmrsx5h40ys2ggxp";
};
meta = with lib; {
homepage = "https://github.com/se-esss-litterbox/Pynac";
description = "A Python wrapper around the Dynac charged particle simulator";
license = licenses.gpl3;
};
}