Unverified Commit 052341df authored by Charles Baynham's avatar Charles Baynham Committed by GitHub
Browse files

python310Packages.sipyco: init at version 1.4 (#227876)

parent 4dd0c3cf
Loading
Loading
Loading
Loading
+41 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, pytestCheckHook
, numpy
}:

buildPythonPackage rec {
  pname = "sipyco";
  version = "1.4";

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "m-labs";
    repo = "sipyco";
    rev = "refs/tags/v${version}";
    hash = "sha256-sEYWtp11piUIa8YyuTOdFIIJ2GfcrUb+HEzPVKr4hW8=";
  };

  propagatedBuildInputs = [
    numpy
  ];

  nativeCheckInputs = [
    pytestCheckHook
  ];

  pythonImportsCheck = [
    "sipyco"
  ];

  meta = with lib; {
    description = "Simple Python Communications - used by the ARTIQ experimental control package";
    homepage = "https://github.com/m-labs/sipyco";
    changelog = "https://github.com/m-labs/sipyco/releases/tag/v${version}";
    license = licenses.lgpl3Plus;
    maintainers = with maintainers; [ charlesbaynham ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -10951,6 +10951,8 @@ self: super: with self; {

  sip_4 = callPackage ../development/python-modules/sip/4.x.nix { };

  sipyco = callPackage ../development/python-modules/sipyco { };

  siuba = callPackage ../development/python-modules/siuba { };

  six = callPackage ../development/python-modules/six { };