nixpkgs/pkgs/development/python-modules/zeroconf/default.nix
R. RyanTM 02aa93e809 python37Packages.zeroconf: 0.21.3 -> 0.22.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-zeroconf/versions
2019-05-02 05:02:01 -07:00

38 lines
797 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, ifaddr
, typing
, isPy27
, pythonOlder
, python
}:
buildPythonPackage rec {
pname = "zeroconf";
version = "0.22.0";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "09dqfbj37l7vnj0fj4a82dqgq9mwm6fnsnsmljg25k1ygcn5hrpy";
};
propagatedBuildInputs = [ ifaddr ]
++ stdenv.lib.optionals (pythonOlder "3.5") [ typing ];
# tests not included with pypi release
doCheck = false;
checkPhase = ''
${python.interpreter} test_zeroconf.py
'';
meta = with stdenv.lib; {
description = "A pure python implementation of multicast DNS service discovery";
homepage = https://github.com/jstasiak/python-zeroconf;
license = licenses.lgpl21;
maintainers = with maintainers; [ abbradar ];
};
}