mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
28 lines
668 B
Nix
28 lines
668 B
Nix
{ lib, buildPythonPackage, fetchFromGitHub, nose }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-vxi11";
|
|
version = "0.9";
|
|
|
|
# no tests in PyPI tarball
|
|
src = fetchFromGitHub {
|
|
owner = "python-ivi";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1xv7chp7rm0vrvbz6q57fpwhlgjz461h08q9zgmkcl2l0w96hmsn";
|
|
};
|
|
|
|
nativeCheckInputs = [ nose ];
|
|
checkPhase = ''
|
|
nosetests
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "VXI-11 driver for controlling instruments over Ethernet";
|
|
mainProgram = "vxi11-cli";
|
|
homepage = "https://github.com/python-ivi/python-vxi11";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ bgamari ];
|
|
};
|
|
}
|