depot/third_party/nixpkgs/pkgs/development/python-modules/javaproperties/default.nix
Default email b96e6f4393 Project import generated by Copybara.
GitOrigin-RevId: 20887e4bbfdae3aed6bfa1f53ddf138ee325515e
2021-07-03 21:40:35 -05:00

33 lines
786 B
Nix

{ lib, buildPythonPackage, fetchFromGitHub
, six
, pytest
, python-dateutil
}:
buildPythonPackage rec {
version = "0.8.0";
pname = "javaproperties";
format = "pyproject";
src = fetchFromGitHub {
owner = "jwodder";
repo = pname;
rev = "v${version}";
sha256 = "0n6dz6rnpq8wdwqyxqwv0q7vrl26vfmvvysdjvy557fck1q2l0kf";
};
propagatedBuildInputs = [ six ];
checkInputs = [ python-dateutil pytest ];
checkPhase = ''
rm tox.ini
pytest -k 'not dumps and not time' --ignore=test/test_propclass.py
'';
meta = with lib; {
description = "Microsoft Azure API Management Client Library for Python";
homepage = "https://github.com/Azure/azure-sdk-for-python";
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};
}