depot/third_party/nixpkgs/pkgs/development/python-modules/pynac/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

21 lines
478 B
Nix

{ 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;
};
}