nixpkgs/pkgs/development/python-modules/rtslib/default.nix

22 lines
570 B
Nix
Raw Permalink Normal View History

{ lib, fetchFromGitHub, buildPythonPackage, six, pyudev, pygobject3 }:
2018-06-24 13:52:23 +00:00
buildPythonPackage rec {
pname = "rtslib";
version = "2.1.74";
2018-06-24 13:52:23 +00:00
src = fetchFromGitHub {
owner = "open-iscsi";
repo = "${pname}-fb";
2018-06-24 13:52:23 +00:00
rev = "v${version}";
sha256 = "1in10z6ckmkfhykar435k1fmswbfajysv4g9nsav893ij8g694fy";
2018-06-24 13:52:23 +00:00
};
propagatedBuildInputs = [ six pyudev pygobject3 ];
meta = with lib; {
2018-06-24 13:52:23 +00:00
description = "A Python object API for managing the Linux LIO kernel target";
homepage = "https://github.com/open-iscsi/rtslib-fb";
2018-06-24 13:52:23 +00:00
license = licenses.asl20;
};
}