bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
22 lines
505 B
Nix
22 lines
505 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 = "Python wrapper around the Dynac charged particle simulator";
|
|
license = licenses.gpl3;
|
|
};
|
|
}
|