mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
5a93edc108
fixes #82229
44 lines
1.1 KiB
Nix
44 lines
1.1 KiB
Nix
{ stdenv
|
|
, fetchFromGitHub
|
|
, buildPythonPackage
|
|
, pyusb
|
|
, numpy
|
|
}:
|
|
|
|
## Usage
|
|
# In NixOS, add the package to services.udev.packages for non-root plugdev
|
|
# users to get device access permission:
|
|
# services.udev.packages = [ pkgs.python3Packages.seabreeze ];
|
|
|
|
buildPythonPackage rec {
|
|
pname = "seabreeze";
|
|
version = "0.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ap--";
|
|
repo = "python-seabreeze";
|
|
rev = "python-seabreeze-v${version}";
|
|
sha256 = "0bc2s9ic77gz9m40w89snixphxlzib60xa4f49n4zasjrddfz1l8";
|
|
};
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/etc/udev/rules.d
|
|
cp misc/10-oceanoptics.rules $out/etc/udev/rules.d/10-oceanoptics.rules
|
|
'';
|
|
|
|
# underlying c libraries are tested and fail
|
|
# (c libs are used with anaconda, which we don't care about as we use the alternative path, being that of pyusb).
|
|
doCheck = false;
|
|
|
|
propagatedBuildInputs = [ pyusb numpy ];
|
|
|
|
setupPyBuildFlags = [ "--without-cseabreeze" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://github.com/ap--/python-seabreeze";
|
|
description = "A python library to access Ocean Optics spectrometers";
|
|
maintainers = [];
|
|
license = licenses.mit;
|
|
};
|
|
}
|