mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
transip: init at 2.0.0
This commit is contained in:
parent
1c94a83a5f
commit
a614706219
39
pkgs/development/python-modules/transip/default.nix
Normal file
39
pkgs/development/python-modules/transip/default.nix
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, requests
|
||||||
|
, cryptography
|
||||||
|
, suds-jurko
|
||||||
|
, pytest
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "transip-api";
|
||||||
|
version = "2.0.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "benkonrath";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "153x8ph7cp432flaqiy2zgp060ddychcqcrssxkcmjvbm86xrz17";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [ pytest ];
|
||||||
|
|
||||||
|
# Constructor Tests require network access
|
||||||
|
checkPhase = ''
|
||||||
|
pytest --deselect=tests/service_tests/test_domain.py::TestDomainService::test_constructor \
|
||||||
|
--deselect tests/service_tests/test_vps.py::TestVPSService::testConstructor \
|
||||||
|
--deselect tests/service_tests/test_webhosting.py::TestWebhostingService::testConstructor
|
||||||
|
'';
|
||||||
|
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ requests cryptography suds-jurko ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "TransIP API Connector";
|
||||||
|
homepage = https://github.com/benkonrath/transip-api;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ flyfloh ];
|
||||||
|
};
|
||||||
|
}
|
@ -6802,6 +6802,8 @@ in {
|
|||||||
|
|
||||||
tldextract = callPackage ../development/python-modules/tldextract { };
|
tldextract = callPackage ../development/python-modules/tldextract { };
|
||||||
|
|
||||||
|
transip = callPackage ../development/python-modules/transip { };
|
||||||
|
|
||||||
pyemd = callPackage ../development/python-modules/pyemd { };
|
pyemd = callPackage ../development/python-modules/pyemd { };
|
||||||
|
|
||||||
pulp = callPackage ../development/python-modules/pulp { };
|
pulp = callPackage ../development/python-modules/pulp { };
|
||||||
|
Loading…
Reference in New Issue
Block a user