python310Packages.pywbem: add changelog to meta
- add pythonImportsCheck
This commit is contained in:
parent
04a0a284db
commit
8f95b6f17d
1 changed files with 23 additions and 17 deletions
|
@ -1,26 +1,25 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, decorator
|
||||
, fetchPypi
|
||||
, libxml2
|
||||
, m2crypto
|
||||
, ply
|
||||
, pyyaml
|
||||
, six
|
||||
, pbr
|
||||
, pythonOlder
|
||||
, nocasedict
|
||||
, nocaselist
|
||||
, yamlloader
|
||||
, requests-mock
|
||||
, FormEncode
|
||||
, httpretty
|
||||
, libxml2
|
||||
, lxml
|
||||
, mock
|
||||
, nocasedict
|
||||
, nocaselist
|
||||
, pbr
|
||||
, ply
|
||||
, pytest
|
||||
, requests
|
||||
, decorator
|
||||
, FormEncode
|
||||
, testfixtures
|
||||
, pythonOlder
|
||||
, pytz
|
||||
, pyyaml
|
||||
, requests
|
||||
, requests-mock
|
||||
, six
|
||||
, testfixtures
|
||||
, yamlloader
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -28,9 +27,11 @@ buildPythonPackage rec {
|
|||
version = "1.6.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-4mqwMkR17lMp10lx+UK0sxW2rA7a8njnDha1YDJ475g=";
|
||||
hash = "sha256-4mqwMkR17lMp10lx+UK0sxW2rA7a8njnDha1YDJ475g=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
|
@ -42,7 +43,7 @@ buildPythonPackage rec {
|
|||
pyyaml
|
||||
six
|
||||
yamlloader
|
||||
] ++ lib.optionals (pythonOlder "3.0") [ m2crypto ];
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
decorator
|
||||
|
@ -57,9 +58,14 @@ buildPythonPackage rec {
|
|||
testfixtures
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pywbem"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Support for the WBEM standard for systems management";
|
||||
homepage = "https://pywbem.github.io";
|
||||
changelog = "https://github.com/pywbem/pywbem/blob/${version}/docs/changes.rst";
|
||||
license = licenses.lgpl21Plus;
|
||||
maintainers = with maintainers; [ peterhoeg ];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue