mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
991f825f2d
Also fixes the build: https://hydra.nixos.org/build/101987213 ZHF #68361
34 lines
1 KiB
Nix
34 lines
1 KiB
Nix
{ stdenv, buildPythonPackage, fetchPypi, pyyaml, pytest, pytestcov }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-hosts";
|
|
version = "0.4.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0jdpihj8ajn6pqqa9viw0043l5wvbzgk81rnyk2134iyzhg06z80";
|
|
};
|
|
|
|
# win_inet_pton is required for windows support
|
|
prePatch = ''
|
|
substituteInPlace setup.py --replace "install_requires=['win_inet_pton']," ""
|
|
substituteInPlace python_hosts/utils.py --replace "import win_inet_pton" ""
|
|
'';
|
|
|
|
checkInputs = [ pyyaml pytest pytestcov ];
|
|
|
|
# Removing 1 test file (it requires internet connection) and keeping the other two
|
|
checkPhase = ''
|
|
pytest tests/test_hosts_entry.py
|
|
pytest tests/test_utils.py
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A library for managing a hosts file. It enables adding and removing entries, or importing them from a file or URL";
|
|
homepage = https://github.com/jonhadfield/python-hosts;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ psyanticy ];
|
|
};
|
|
}
|
|
|