linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / contextvars / default.nix
blob1eda85a6ffe28d03444ed007d3832d2c01b0bf76
1 { lib, buildPythonPackage, fetchPypi, isPy36, immutables }:
3 buildPythonPackage rec {
4   pname = "contextvars";
5   version = "2.4";
6   disabled = !isPy36;
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "f38c908aaa59c14335eeea12abea5f443646216c4e29380d7bf34d2018e2c39e";
11   };
13   propagatedBuildInputs = [ immutables ];
15   meta = {
16     description = "A backport of the Python 3.7 contextvars module for Python 3.6";
17     homepage = "https://github.com/MagicStack/contextvars";
18     license = with lib.licenses; [ asl20 ];
19     maintainers = with lib.maintainers; [ catern ];
20   };