depot/third_party/nixpkgs/pkgs/development/python-modules/urlpy/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

45 lines
866 B
Nix

{ lib
, fetchFromGitHub
, buildPythonPackage
, publicsuffix2
, pytestCheckHook
, pythonAtLeast
}:
buildPythonPackage rec {
pname = "urlpy";
version = "0.5.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "nexB";
repo = "urlpy";
rev = "v${version}";
sha256 = "962jLyx+/GS8wrDPzG2ONnHvtUG5Pqe6l1Z5ml63Cmg=";
};
dontConfigure = true;
propagatedBuildInputs = [
publicsuffix2
];
nativeCheckInputs = [
pytestCheckHook
];
disabledTests = lib.optionals (pythonAtLeast "3.9") [
# Fails with "AssertionError: assert 'unknown' == ''"
"test_unknown_protocol"
];
pythonImportsCheck = [
"urlpy"
];
meta = with lib; {
description = "Simple URL parsing, canonicalization and equivalence";
homepage = "https://github.com/nexB/urlpy";
license = licenses.mit;
maintainers = [ ];
};
}