Merge pull request #201886 from tjni/pywbem
This commit is contained in:
commit
5a7ea38335
1 changed files with 24 additions and 5 deletions
|
@ -1,12 +1,32 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, libxml2
|
||||
, m2crypto, ply, pyyaml, six, pbr, pythonOlder, nocasedict, nocaselist, yamlloader, requests-mock
|
||||
, httpretty, lxml, mock, pytest, requests, decorator, unittest2
|
||||
, FormEncode, testfixtures, pytz
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, libxml2
|
||||
, m2crypto
|
||||
, ply
|
||||
, pyyaml
|
||||
, six
|
||||
, pbr
|
||||
, pythonOlder
|
||||
, nocasedict
|
||||
, nocaselist
|
||||
, yamlloader
|
||||
, requests-mock
|
||||
, httpretty
|
||||
, lxml
|
||||
, mock
|
||||
, pytest
|
||||
, requests
|
||||
, decorator
|
||||
, FormEncode
|
||||
, testfixtures
|
||||
, pytz
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pywbem";
|
||||
version = "1.5.0";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
|
@ -35,7 +55,6 @@ buildPythonPackage rec {
|
|||
requests
|
||||
requests-mock
|
||||
testfixtures
|
||||
unittest2
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
|
|
Loading…
Reference in a new issue