python312Packages.soco: refactor
This commit is contained in:
parent
be14b2e8fc
commit
6c62744581
1 changed files with 9 additions and 4 deletions
|
@ -1,23 +1,24 @@
|
||||||
{ lib
|
{ lib
|
||||||
|
, appdirs
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, graphviz
|
, graphviz
|
||||||
, appdirs
|
|
||||||
, ifaddr
|
, ifaddr
|
||||||
, pythonOlder
|
|
||||||
, lxml
|
, lxml
|
||||||
, mock
|
, mock
|
||||||
, nix-update-script
|
, nix-update-script
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
|
, pythonOlder
|
||||||
, requests
|
, requests
|
||||||
, requests-mock
|
, requests-mock
|
||||||
|
, setuptools
|
||||||
, xmltodict
|
, xmltodict
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "soco";
|
pname = "soco";
|
||||||
version = "0.30.2";
|
version = "0.30.2";
|
||||||
format = "setuptools";
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.6";
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
|
@ -28,7 +29,11 @@ buildPythonPackage rec {
|
||||||
hash = "sha256-T5kZxwLtqdECuYNfI0z2kLuTPp8yuPsx+MQG27WUJYU=";
|
hash = "sha256-T5kZxwLtqdECuYNfI0z2kLuTPp8yuPsx+MQG27WUJYU=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
build-system = [
|
||||||
|
setuptools
|
||||||
|
];
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
appdirs
|
appdirs
|
||||||
ifaddr
|
ifaddr
|
||||||
lxml
|
lxml
|
||||||
|
|
Loading…
Reference in a new issue