Commit 444d3a82 authored by Robert Scott's avatar Robert Scott Committed by Frederik Rietdijk
Browse files

treewide/python-modules: add sourceProvenance for several packages

parent c8f6b47a
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -80,6 +80,11 @@ stdenv.mkDerivation rec {
                potential close to the membrane), and where cell membrane properties are complex,
                involving many ion-specific channels, ion accumulation, and second messengers";

    sourceProvenance = with sourceTypes; [
      fromSource
    ] ++ lib.optionals (python != null) [
      binaryNativeCode  # "geometry3d" bundled libraries
    ];
    license     = licenses.bsd3;
    homepage    = "http://www.neuron.yale.edu/neuron";
    maintainers = [ maintainers.adev ];
+4 −0
Original line number Diff line number Diff line
@@ -31,6 +31,10 @@ buildPythonPackage rec {

  meta = with lib; {
    homepage = "https://github.com/originell/jpype/";
    sourceProvenance = with sourceTypes; [
      fromSource
      binaryBytecode
    ];
    license = licenses.asl20;
    description = "A Python to Java bridge";
  };
+4 −0
Original line number Diff line number Diff line
@@ -40,6 +40,10 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Tool for Android testing and development";
    homepage = "https://github.com/ashishb/adb-enhanced";
    sourceProvenance = with sourceTypes; [
      fromSource
      binaryBytecode
    ];
    license = licenses.asl20;
    maintainers = with maintainers; [ vtuan10 ];
    mainProgram = "adbe";
+4 −0
Original line number Diff line number Diff line
@@ -41,6 +41,10 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Python implementation of Amazon Ion";
    homepage = "https://github.com/amzn/ion-python";
    sourceProvenance = with sourceTypes; [
      fromSource
      binaryNativeCode
    ];
    license = licenses.asl20;
    maintainers = with maintainers; [ terlar ];
  };
+1 −0
Original line number Diff line number Diff line
@@ -41,6 +41,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Client for connecting to remote Databricks clusters";
    homepage = "https://pypi.org/project/databricks-connect";
    sourceProvenance = with sourceTypes; [ binaryBytecode ];
    license = licenses.databricks;
    maintainers = with maintainers; [ kfollesdal ];
  };
Loading