linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / wrapt / default.nix
blob0d5376e10047981396f91f72c2b10b0a986c1f9d
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "wrapt";
8   version = "1.12.1";
10   # No tests in archive
11   doCheck = false;
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "b62ffa81fb85f4332a4f609cab4ac40709470da05643a082ec1eb88e6d9b97d7";
16   };
18   meta = {
19     description = "Module for decorators, wrappers and monkey patching";
20     license = lib.licenses.bsd2;
21     homepage = "https://github.com/GrahamDumpleton/wrapt";
22   };