about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pynac/default.nix
blob: 755dda341c9dfa266889c23104bc6e720860e30c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv
, buildPythonPackage
, fetchurl
}:

buildPythonPackage {
  pname = "pynac";
  version = "0.2";

  src = fetchurl {
    url = "mirror://sourceforge/project/pynac/pynac/pynac-0.2/pynac-0.2.tar.gz";
    sha256 = "0avzqqcxl54karjmla9jbsyid98mva36lxahwmrsx5h40ys2ggxp";
  };

  meta = with stdenv.lib; {
    homepage = https://github.com/se-esss-litterbox/Pynac;
    description = "A Python wrapper around the Dynac charged particle simulator";
    license = licenses.gpl3;
  };

}