nixpkgs/pkgs/development/python-modules/wrapt/default.nix

24 lines
471 B
Nix
Raw Normal View History

2018-02-27 15:35:57 +00:00
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "wrapt";
2019-10-16 09:43:17 +00:00
version = "1.11.2";
2018-02-27 15:35:57 +00:00
# No tests in archive
doCheck = false;
src = fetchPypi {
inherit pname version;
2019-10-16 09:43:17 +00:00
sha256 = "565a021fd19419476b9362b05eeaa094178de64f8361e44468f9e9d7843901e1";
2018-02-27 15:35:57 +00:00
};
meta = {
description = "Module for decorators, wrappers and monkey patching";
license = lib.licenses.bsd2;
homepage = "https://github.com/GrahamDumpleton/wrapt";
2018-02-27 15:35:57 +00:00
};
}