Merge pull request #225924 from yu-re-ka/nc-dnsapi

python3.pkgs.nc-dnsapi: 0.1.5 -> 0.1.6
This commit is contained in:
Nick Cao
2023-04-13 09:16:35 +08:00
committed by GitHub
@@ -1,17 +1,18 @@
{ lib
, buildPythonPackage
, fetchPypi
, fetchFromGitHub
, requests
}:
buildPythonPackage rec {
pname = "nc-dnsapi";
version = "0.1.5";
version = "0.1.6";
src = fetchPypi {
inherit version;
pname = "nc_dnsapi";
hash = "sha256-1fvzr3e0ZAbSDOovhLz5GHJCS6l+K89fbYHoaWxO9cA=";
src = fetchFromGitHub {
owner = "nbuchwitz";
repo = "nc_dnsapi";
rev = "v${version}";
hash = "sha256-OE4+wJbJbUZ+YB5J5OyvytLFCcrnXCeZEqmphHKKprQ=";
};
propagatedBuildInputs = [ requests ];