nixpkgs/pkgs/development/python-modules/teamcity-messages/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

41 lines
759 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "teamcity-messages";
version = "1.32";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "JetBrains";
repo = pname;
rev = "v${version}";
hash = "sha256-9az7kD7nKqMF2b3/eFgF+pOKKIYLvTy2sf4TSJfHRnA=";
};
nativeCheckInputs = [
pytestCheckHook
];
pytestFlagsArray = [
"tests/unit-tests/"
];
pythonImportsCheck = [
"teamcity"
];
meta = with lib; {
description = "Python unit test reporting to TeamCity";
homepage = "https://github.com/JetBrains/teamcity-messages";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}