depot/third_party/nixpkgs/pkgs/development/python-modules/configshell/default.nix
Default email 9c6ee729d6 Project import generated by Copybara.
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
2023-07-15 19:15:38 +02:00

39 lines
714 B
Nix

{ lib
, fetchFromGitHub
, buildPythonPackage
, pyparsing
, six
, urwid
}:
buildPythonPackage rec {
pname = "configshell";
version = "1.1.30";
src = fetchFromGitHub {
owner = "open-iscsi";
repo = "${pname}-fb";
rev = "v${version}";
hash = "sha256-7iWmYVCodwncoPdpw85zrNsZSEq+ume412lyiiJqRPc=";
};
propagatedBuildInputs = [
pyparsing
six
urwid
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"configshell"
];
meta = with lib; {
description = "Python library for building configuration shells";
homepage = "https://github.com/open-iscsi/configshell-fb";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}