mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
17 lines
407 B
Nix
17 lines
407 B
Nix
{ stdenv, buildPythonPackage, fetchPypi }:
|
|
buildPythonPackage rec {
|
|
pname = "timeout-decorator";
|
|
version = "0.4.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1inkf68i2s2x27arpqwkdxigiqbpbpjbbnfv7jzsrif1fmp2fphs";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Timeout decorator";
|
|
license = licenses.mit;
|
|
homepage = "https://github.com/pnpnpn/timeout-decorator";
|
|
};
|
|
}
|