mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
29 lines
576 B
Nix
29 lines
576 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, requests
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "PyNamecheap";
|
|
version = "0.0.3";
|
|
|
|
propagatedBuildInputs = [ requests ];
|
|
|
|
# Tests require access to api.sandbox.namecheap.com
|
|
doCheck = false;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Bemmu";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1g1cd2yc6rpdsc5ax7s93y5nfkf91gcvbgcaqyl9ida6srd9hr97";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Namecheap API client in Python.";
|
|
homepage = "https://github.com/Bemmu/PyNamecheap";
|
|
license = licenses.mit;
|
|
};
|
|
}
|