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