pythonPackages.lhapdf: init

master
Dmitry Kalinkin 2021-06-07 02:04:31 -04:00
parent 6d84e50b19
commit 489c958e02
No known key found for this signature in database
GPG Key ID: 5157B3EC8B2CA333
2 changed files with 6 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, python2, makeWrapper }:
{ lib, stdenv, fetchurl, python, makeWrapper }:
stdenv.mkDerivation rec {
pname = "lhapdf";
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ python2 ];
buildInputs = [ python ];
enableParallelBuilding = true;

View File

@ -3840,6 +3840,10 @@ in {
lexid = callPackage ../development/python-modules/lexid { };
lhapdf = toPythonModule (pkgs.lhapdf.override {
inherit python;
});
libagent = callPackage ../development/python-modules/libagent { };
pa-ringbuffer = callPackage ../development/python-modules/pa-ringbuffer { };