mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-09 12:05:50 +03:00
octosuite: 3.1.0 -> 3.1.1 (#347083)
This commit is contained in:
commit
eb898a1b72
1 changed files with 11 additions and 6 deletions
|
@ -5,23 +5,28 @@
|
||||||
|
|
||||||
python3.pkgs.buildPythonApplication rec {
|
python3.pkgs.buildPythonApplication rec {
|
||||||
pname = "octosuite";
|
pname = "octosuite";
|
||||||
version = "3.1.0";
|
version = "3.1.1";
|
||||||
format = "setuptools";
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "bellingcat";
|
owner = "bellingcat";
|
||||||
repo = "octosuite";
|
repo = "octosuite";
|
||||||
rev = "refs/tags/${version}";
|
rev = "refs/tags/${version}";
|
||||||
hash = "sha256-C73txVtyWTcIrJSApBy4uIKDcuUq0HZrGM6dqDVLkKY=";
|
hash = "sha256-bgTAGIJbxOa8q8lMsWa8dHwNZ/jXiWGQOp921sd2Vdo=";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
# pyreadline3 is Windows-only
|
# pyreadline3 is Windows-only
|
||||||
substituteInPlace setup.py \
|
substituteInPlace pyproject.toml \
|
||||||
--replace ', "pyreadline3"' ""
|
--replace-fail '"pyreadline3",' ""
|
||||||
'';
|
'';
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
build-system = with python3.pkgs; [
|
||||||
|
setuptools
|
||||||
|
setuptools-scm
|
||||||
|
];
|
||||||
|
|
||||||
|
dependencies = with python3.pkgs; [
|
||||||
psutil
|
psutil
|
||||||
requests
|
requests
|
||||||
rich
|
rich
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue