blob: 45fb25f7315a145bcddf8d64e8d33cd7c5785781 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{ 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;
};
}
|