nixpkgs/pkgs/development/python-modules/wrapt/default.nix
2020-04-10 17:54:53 +01:00

24 lines
471 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "wrapt";
version = "1.11.2";
# No tests in archive
doCheck = false;
src = fetchPypi {
inherit pname version;
sha256 = "565a021fd19419476b9362b05eeaa094178de64f8361e44468f9e9d7843901e1";
};
meta = {
description = "Module for decorators, wrappers and monkey patching";
license = lib.licenses.bsd2;
homepage = "https://github.com/GrahamDumpleton/wrapt";
};
}