Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python311Packages.testrail-api: 1.12.0 -> 1.12.1

Diff: https://github.com/tolstislon/testrail-api/compare/refs/tags/1.12.0...1.12.1

Changelog: https://github.com/tolstislon/ytestrail-api/releases/tag/1.12.1

+21 -6
+21 -6
pkgs/development/python-modules/testrail-api/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 - , requests 5 4 , pytestCheckHook 5 + , pythonOlder 6 + , requests 6 7 , responses 8 + , setuptools-scm 7 9 }: 8 10 9 11 buildPythonPackage rec { 10 12 pname = "testrail-api"; 11 - version = "1.12.0"; 13 + version = "1.12.1"; 14 + pyproject = true; 15 + 16 + disabled = pythonOlder "3.7"; 12 17 13 18 src = fetchFromGitHub { 14 19 owner = "tolstislon"; 15 20 repo = "testrail-api"; 16 - rev = version; 17 - sha256 = "sha256-VuAW5Dl3pkA6mtn/mbzxTFoavO5jPoqFSFVlrxc7KRk="; 21 + rev = "refs/tags/${version}"; 22 + hash = "sha256-lIlTrAdNtBJdwiSFwpcHA2e+fRC+MbHS0PX7prAN+RY="; 18 23 }; 19 24 25 + env.SETUPTOOLS_SCM_PRETEND_VERSION = version; 26 + 27 + nativeBuildInputs = [ 28 + setuptools-scm 29 + ]; 30 + 31 + propagatedBuildInputs = [ 32 + requests 33 + ]; 34 + 20 35 nativeCheckInputs = [ 21 36 pytestCheckHook 22 37 responses 23 38 ]; 24 39 25 - propagatedBuildInputs = [ 26 - requests 40 + pythonImportsCheck = [ 41 + "testrail_api" 27 42 ]; 28 43 29 44 meta = with lib; {