diff options
| author | Fabian Affolter <mail@fabian-affolter.ch> | 2023-04-23 12:41:17 +0200 |
|---|---|---|
| committer | Fabian Affolter <mail@fabian-affolter.ch> | 2023-04-23 12:41:17 +0200 |
| commit | 58f2928ed51bd2a0de5fc19c188fdd5b1ef57b0a (patch) | |
| tree | 45de2a546308310dcefeaa625c99f2881345d948 | |
| parent | rocm-thunk: evaluate even on unsupported platforms again (diff) | |
| download | nixpkgs-58f2928ed51bd2a0de5fc19c188fdd5b1ef57b0a.tar.gz | |
python310Packages.qualysclient: fix invalid specifier
| -rw-r--r-- | pkgs/development/python-modules/qualysclient/default.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/qualysclient/default.nix b/pkgs/development/python-modules/qualysclient/default.nix index d53c9e80a6c6..be16a8c48cc5 100644 --- a/pkgs/development/python-modules/qualysclient/default.nix +++ b/pkgs/development/python-modules/qualysclient/default.nix @@ -27,6 +27,11 @@ buildPythonPackage rec { hash = "sha256-+SZICysgSC4XeXC9CCl6Yxb47V9c1eMp7KcpH8J7kK0="; }; + postPatch = '' + substituteInPlace setup.py \ + --replace "version=__version__," 'version="${version}",' + ''; + propagatedBuildInputs = [ certifi charset-normalizer |
