4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
40 lines
927 B
Nix
40 lines
927 B
Nix
{ lib, stdenv, fetchPypi, python }:
|
|
|
|
python.pkgs.buildPythonPackage rec {
|
|
pname = "tld";
|
|
version = "0.12.4";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0976g7jcpi3jv7snawmfis5ybb6737cv2xw7wlanlfkyqljip24x";
|
|
};
|
|
|
|
propagatedBuildInputs = with python.pkgs; [ six ];
|
|
checkInputs = with python.pkgs; [ factory_boy faker pytestcov tox pytestCheckHook];
|
|
|
|
# https://github.com/barseghyanartur/tld/issues/54
|
|
disabledTests = [
|
|
"test_1_update_tld_names"
|
|
"test_1_update_tld_names_command"
|
|
"test_2_update_tld_names_module"
|
|
];
|
|
|
|
preCheck = ''
|
|
export PATH="$PATH:$out/bin"
|
|
'';
|
|
|
|
dontUseSetuptoolsCheck = true;
|
|
|
|
pythonImportsCheck = [
|
|
"tld"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/barseghyanartur/tld";
|
|
description = "Extracts the top level domain (TLD) from the URL given";
|
|
license = licenses.lgpl21;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
|
|
}
|