mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
python39Packages.devolo-home-control-api: fix version number
This commit is contained in:
parent
829942fd95
commit
3af1bbfc68
@ -5,6 +5,7 @@
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, requests
|
||||
, setuptools-scm
|
||||
, websocket-client
|
||||
, zeroconf
|
||||
}:
|
||||
@ -21,6 +22,12 @@ buildPythonPackage rec {
|
||||
sha256 = "sha256-N/48Q2IEL194vCzrPPuy+mRNejXfkoXy2t2oe0Y6ug4=";
|
||||
};
|
||||
|
||||
SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools-scm
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
requests
|
||||
zeroconf
|
||||
@ -32,13 +39,6 @@ buildPythonPackage rec {
|
||||
pytest-mock
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
# setup.py is not able to detect the version with setuptools_scm
|
||||
substituteInPlace setup.py \
|
||||
--replace "setuptools_scm" "" \
|
||||
--replace 'use_scm_version=True' 'use_scm_version="${version}"'
|
||||
'';
|
||||
|
||||
# Disable test that requires network access
|
||||
disabledTests = [
|
||||
"test__on_pong"
|
||||
|
Loading…
Reference in New Issue
Block a user