depot/third_party/nixpkgs/pkgs/development/python-modules/python-benedict/default.nix
Default email 4cb23072fc Project import generated by Copybara.
GitOrigin-RevId: 6d8215281b2f87a5af9ed7425a26ac575da0438f
2022-01-20 00:45:15 +01:00

75 lines
1.5 KiB
Nix

{ lib
, aiohttp
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, mailchecker
, phonenumbers
, python-dateutil
, python-fsutil
, python-slugify
, pyyaml
, ftfy
, requests
, six
, toml
, xmltodict
}:
buildPythonPackage rec {
pname = "python-benedict";
version = "0.24.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "fabiocaccamo";
repo = pname;
rev = version;
hash = "sha256-06n8MNoGQRSrBK2XeEBBoQ2NIXWf0qXPVBeP9ERMEj0=";
};
propagatedBuildInputs = [
mailchecker
phonenumbers
python-dateutil
python-fsutil
python-slugify
pyyaml
ftfy
requests
six
toml
xmltodict
];
checkInputs = [
pytestCheckHook
];
disabledTests = [
# Tests require network access
"test_from_base64_with_valid_url_valid_content"
"test_from_json_with_valid_url_valid_content"
"test_from_pickle_with_valid_url_valid_content"
"test_from_plist_with_valid_url_valid_content"
"test_from_query_string_with_valid_url_valid_content"
"test_from_toml_with_valid_url_valid_content"
"test_from_xml_with_valid_url_valid_content"
"test_from_yaml_with_valid_url_valid_content"
];
pythonImportsCheck = [
"benedict"
];
meta = with lib; {
description = "Module with keylist/keypath support";
homepage = "https://github.com/fabiocaccamo/python-benedict";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}