pythonPackages.pydns: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-27 09:38:59 -04:00
parent 17da4404ca
commit ac2e2a3d38
2 changed files with 24 additions and 12 deletions

View File

@@ -0,0 +1,23 @@
{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "pydns";
version = "2.3.6";
src = fetchPypi {
inherit pname version;
sha256 = "0qnv7i9824nb5h9psj0rwzjyprwgfiwh5s5raa9avbqazy5hv5pi";
};
doCheck = false;
meta = with stdenv.lib; {
description = "Python DNS library";
homepage = http://pydns.sourceforge.net/;
license = licenses.psfl;
};
}