python311Packages.sip: 6.8.1 -> 6.8.3
https://github.com/Python-SIP/sip/releases/tag/6.8.2 https://github.com/Python-SIP/sip/releases/tag/6.8.3
This commit is contained in:
parent
b055c26410
commit
59ad9d607d
1 changed files with 7 additions and 8 deletions
|
@ -1,10 +1,8 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
, setuptools
|
||||
, wheel
|
||||
, packaging
|
||||
, ply
|
||||
, toml
|
||||
|
@ -18,21 +16,22 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "sip";
|
||||
version = "6.8.1";
|
||||
|
||||
format = "pyproject";
|
||||
version = "6.8.3";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-MALfQV4WisP/45OULbxxMcuCreUAAOFSb0aoit4m9Zg=";
|
||||
hash = "sha256-iIVHsBi7JMNq3tUZ6T0+UT1MaqC6VbfMGv+9Rc8Qdiw=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
wheel
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [ packaging ply toml ] ++ lib.optionals (pythonOlder "3.11") [
|
||||
propagatedBuildInputs = [
|
||||
packaging
|
||||
setuptools
|
||||
] ++ lib.optionals (pythonOlder "3.11") [
|
||||
tomli
|
||||
];
|
||||
|
||||
|
|
Loading…
Reference in a new issue