pythonPackages.pynac: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-29 12:52:24 -04:00
parent c5ae2c3047
commit 62caeb1e31
2 changed files with 22 additions and 11 deletions

View File

@@ -0,0 +1,21 @@
{ stdenv
, buildPythonPackage
, fetchurl
}:
buildPythonPackage rec {
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;
};
}