evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / javaproperties / default.nix
blobbd8c9085a25d83df00226aadd09ca9deb252a660
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   setuptools,
6   six,
7   pytestCheckHook,
8   python-dateutil,
9 }:
11 buildPythonPackage rec {
12   version = "0.8.1";
13   pname = "javaproperties";
14   format = "pyproject";
16   src = fetchFromGitHub {
17     owner = "jwodder";
18     repo = pname;
19     rev = "v${version}";
20     sha256 = "16rcdw5gd4a21v2xb1j166lc9z2dqcv68gqvk5mvpnm0x6nwadgp";
21   };
23   nativeBuildInputs = [ setuptools ];
25   propagatedBuildInputs = [ six ];
27   nativeCheckInputs = [
28     python-dateutil
29     pytestCheckHook
30   ];
32   disabledTests = [ "time" ];
34   disabledTestPaths = [ "test/test_propclass.py" ];
36   meta = with lib; {
37     description = "Microsoft Azure API Management Client Library for Python";
38     homepage = "https://github.com/Azure/azure-sdk-for-python";
39     license = licenses.mit;
40     maintainers = [ ];
41   };