pythonPackages.srvlookup: init at 2.0.0
This commit is contained in:
parent
0cff75edf9
commit
58a35beb35
24
pkgs/development/python-modules/srvlookup/default.nix
Normal file
24
pkgs/development/python-modules/srvlookup/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ stdenv, fetchPypi, buildPythonPackage
|
||||||
|
, dnspython
|
||||||
|
, mock, nose
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "srvlookup";
|
||||||
|
version = "2.0.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1zf1v04zd5phabyqh0nhplr5a8vxskzfrzdh4akljnz1yk2n2a0b";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ dnspython ];
|
||||||
|
checkInputs = [ mock nose ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "https://github.com/gmr/srvlookup";
|
||||||
|
license = [ licenses.bsd3 ];
|
||||||
|
description = "A small wrapper for dnspython to return SRV records for a given host, protocol, and domain name as a list of namedtuples.";
|
||||||
|
maintainers = [ maintainers.mmlb ];
|
||||||
|
};
|
||||||
|
}
|
@ -1556,6 +1556,8 @@ in {
|
|||||||
|
|
||||||
spglib = callPackage ../development/python-modules/spglib { };
|
spglib = callPackage ../development/python-modules/spglib { };
|
||||||
|
|
||||||
|
srvlookup = callPackage ../development/python-modules/srvlookup { };
|
||||||
|
|
||||||
sshpubkeys = callPackage ../development/python-modules/sshpubkeys { };
|
sshpubkeys = callPackage ../development/python-modules/sshpubkeys { };
|
||||||
|
|
||||||
sshtunnel = callPackage ../development/python-modules/sshtunnel { };
|
sshtunnel = callPackage ../development/python-modules/sshtunnel { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user