python3.pkgs.nc-dnsapi: 0.1.5 -> 0.1.6

This commit is contained in:
Yureka 2023-04-12 19:54:06 +02:00
parent 5128a000ad
commit 860a557c3e

View file

@ -1,17 +1,18 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchFromGitHub
, requests , requests
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "nc-dnsapi"; pname = "nc-dnsapi";
version = "0.1.5"; version = "0.1.6";
src = fetchPypi { src = fetchFromGitHub {
inherit version; owner = "nbuchwitz";
pname = "nc_dnsapi"; repo = "nc_dnsapi";
hash = "sha256-1fvzr3e0ZAbSDOovhLz5GHJCS6l+K89fbYHoaWxO9cA="; rev = "v${version}";
hash = "sha256-OE4+wJbJbUZ+YB5J5OyvytLFCcrnXCeZEqmphHKKprQ=";
}; };
propagatedBuildInputs = [ requests ]; propagatedBuildInputs = [ requests ];