Merge pull request #304189 from fabaff/soco-bump

python312Packages.soco: 0.30.2 -> 0.30.3
This commit is contained in:
Nick Cao 2024-04-15 09:57:57 -04:00 committed by GitHub
commit 7bec749ed1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 23 additions and 21 deletions

View File

@ -1,23 +1,25 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, graphviz
, appdirs
, ifaddr
, pythonOlder
, lxml
, mock
, nix-update-script
, pytestCheckHook
, requests
, requests-mock
, xmltodict
{
lib,
appdirs,
buildPythonPackage,
fetchFromGitHub,
graphviz,
ifaddr,
lxml,
mock,
nix-update-script,
pytestCheckHook,
pythonOlder,
requests,
requests-mock,
setuptools,
xmltodict,
}:
buildPythonPackage rec {
pname = "soco";
version = "0.30.2";
format = "setuptools";
version = "0.30.3";
pyproject = true;
disabled = pythonOlder "3.6";
@ -25,10 +27,12 @@ buildPythonPackage rec {
owner = "SoCo";
repo = "SoCo";
rev = "refs/tags/v${version}";
hash = "sha256-T5kZxwLtqdECuYNfI0z2kLuTPp8yuPsx+MQG27WUJYU=";
hash = "sha256-QAF3f1JMGFFsgdZzoyo+RwKKMaLG+hy+lvZwCzceU/g=";
};
propagatedBuildInputs = [
build-system = [ setuptools ];
dependencies = [
appdirs
ifaddr
lxml
@ -43,9 +47,7 @@ buildPythonPackage rec {
requests-mock
];
pythonImportsCheck = [
"soco"
];
pythonImportsCheck = [ "soco" ];
passthru.updateScript = nix-update-script { };