1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

pynamecheap: init at 0.0.3

This commit is contained in:
Florian 2020-01-15 14:08:32 +01:00 committed by Frederik Rietdijk
parent 29b85537c3
commit 9006edb2a9
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ 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;
};
}

View file

@ -1000,6 +1000,8 @@ in {
pymupdf = callPackage ../development/python-modules/pymupdf { };
pynamecheap = callPackage ../development/python-modules/pynamecheap { };
Pmw = callPackage ../development/python-modules/Pmw { };
py_stringmatching = callPackage ../development/python-modules/py_stringmatching { };