at 24.05-pre 478 B view raw
1{ lib 2, buildPythonPackage 3, fetchurl 4}: 5 6buildPythonPackage { 7 pname = "pynac"; 8 version = "0.2"; 9 10 src = fetchurl { 11 url = "mirror://sourceforge/project/pynac/pynac/pynac-0.2/pynac-0.2.tar.gz"; 12 sha256 = "0avzqqcxl54karjmla9jbsyid98mva36lxahwmrsx5h40ys2ggxp"; 13 }; 14 15 meta = with lib; { 16 homepage = "https://github.com/se-esss-litterbox/Pynac"; 17 description = "A Python wrapper around the Dynac charged particle simulator"; 18 license = licenses.gpl3; 19 }; 20 21}