mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
22 lines
486 B
Nix
22 lines
486 B
Nix
{ 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;
|
|
};
|
|
|
|
}
|