Merge pull request #278045 from fabaff/trueseeing-bump

trueseeing: 2.1.7 -> 2.1.9
This commit is contained in:
Fabian Affolter
2024-01-02 10:11:42 +01:00
committed by GitHub
+9 -11
View File
@@ -5,16 +5,21 @@
python3.pkgs.buildPythonApplication rec {
pname = "trueseeing";
version = "2.1.7";
format = "pyproject";
version = "2.1.9";
pyproject = true;
src = fetchFromGitHub {
owner = "alterakey";
repo = pname;
repo = "trueseeing";
rev = "refs/tags/v${version}";
hash = "sha256-pnIn+Rqun5J3F9cgeBUBX4e9WP5fgbm+vwN3Wqh/yEc=";
hash = "sha256-g5OqdnPtGGV4wBwPRAjH3lweguwlfVcgpNLlq54OHKA=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace "attrs~=21.4" "attrs>=21.4"
'';
nativeBuildInputs = with python3.pkgs; [
flit-core
];
@@ -26,15 +31,8 @@ python3.pkgs.buildPythonApplication rec {
lxml
pypubsub
pyyaml
docker
];
postPatch = ''
substituteInPlace pyproject.toml \
--replace "attrs~=21.4" "attrs>=21.4" \
--replace "docker~=5.0.3" "docker"
'';
# Project has no tests
doCheck = false;