Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / stopit / default.nix
blob06ed79491ed711725d1fde218d0038b89451d944
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , setuptools
6 }:
8 buildPythonPackage rec {
9   pname = "stopit";
10   version = "1.1.2";
11   format = "setuptools";
13   # tests are missing from the PyPi tarball
14   src = fetchFromGitHub {
15     owner = "glenfant";
16     repo = pname;
17     rev = version;
18     hash = "sha256-uXJUA70JOGWT2NmS6S7fPrTWAJZ0mZ/hICahIUzjfbw=";
19   };
21   propagatedBuildInputs = [
22     setuptools # for pkg_resources
23   ];
25   pythonImportsCheck = [ "stopit" ];
27   meta = with lib; {
28     description = "Raise asynchronous exceptions in other thread, control the timeout of blocks or callables with a context manager or a decorator";
29     homepage = "https://github.com/glenfant/stopit";
30     license = with licenses; [ mit ];
31     maintainers = with maintainers; [ veprbl ];
32   };