1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-25 18:46:32 +03:00
nixpkgs/pkgs/development/python-modules/pywbem/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
1,020 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, libxml2
, m2crypto, ply, pyyaml, six, pbr, pythonOlder, nocasedict, nocaselist, yamlloader, requests-mock
, httpretty, lxml, mock, pytest, requests, decorator, unittest2
2020-10-31 22:50:16 +01:00
, FormEncode, testfixtures, pytz
2017-08-07 23:23:48 +08:00
}:
buildPythonPackage rec {
2018-01-01 11:49:50 +01:00
pname = "pywbem";
version = "1.4.0";
src = fetchPypi {
inherit pname version;
sha256 = "52f668f7ee1f03bdd80485692b648588b3e1909e2dc0754dceca497f5e9cf059";
2017-08-07 23:23:48 +08:00
};
propagatedBuildInputs = [
mock
2020-10-31 22:50:16 +01:00
nocasedict
nocaselist
pbr
ply
pyyaml
six
2020-10-31 22:50:16 +01:00
yamlloader
] ++ lib.optionals (pythonOlder "3.0") [ m2crypto ];
checkInputs = [
decorator
2020-10-31 22:50:16 +01:00
FormEncode
httpretty
libxml2
lxml
pytest
2020-10-31 22:50:16 +01:00
pytz
requests
2020-10-31 22:50:16 +01:00
requests-mock
testfixtures
unittest2
];
meta = with lib; {
description = "Support for the WBEM standard for systems management";
homepage = "https://pywbem.github.io";
license = licenses.lgpl21Plus;
2017-08-07 23:23:48 +08:00
maintainers = with maintainers; [ peterhoeg ];
};
}