blob: 0a5e1257a94c8504ace5d976183d4cc527b53056 (
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 = "Python wrapper around the Dynac charged particle simulator";
license = licenses.gpl3;
};
}
|