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