mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 18:33:00 +00:00
python3Packages.qasync: 0.24.1 -> 0.26.1
Signed-off-by: lucasew <lucas59356@gmail.com>
This commit is contained in:
parent
e0680e03d1
commit
3742d941f4
@ -3,23 +3,28 @@
|
|||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, pyqt5
|
, pyqt5
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
|
, poetry-core
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "qasync";
|
pname = "qasync";
|
||||||
version = "0.24.1";
|
version = "0.26.1";
|
||||||
|
|
||||||
|
format = "pyproject";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "CabbageDevelopment";
|
owner = "CabbageDevelopment";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-DAzmobw+c29Pt/URGO3bWXHBxgu9bDHhdTUBE9QJDe4=";
|
hash = "sha256-vtRmThXKxqof+Rz3Dngtc9tuwL1bPYFHDq4DBRCsrIU=";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
rm qasync/_windows.py # Ignoring it is not taking effect and it will not be used on Linux
|
rm qasync/_windows.py # Ignoring it is not taking effect and it will not be used on Linux
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
buildInputs = [ poetry-core ];
|
||||||
|
|
||||||
propagatedBuildInputs = [ pyqt5 ];
|
propagatedBuildInputs = [ pyqt5 ];
|
||||||
|
|
||||||
checkInputs = [ pytestCheckHook ];
|
checkInputs = [ pytestCheckHook ];
|
||||||
|
Loading…
Reference in New Issue
Block a user