My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pynac/default.nix

21 lines
478 B

{ lib
, 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 lib; {
homepage = "https://github.com/se-esss-litterbox/Pynac";
description = "A Python wrapper around the Dynac charged particle simulator";
license = licenses.gpl3;
};
}