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

23 lines
468 B
Nix
Raw Normal View History

2018-02-27 15:35:57 +00:00
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "wrapt";
2019-02-14 07:37:33 +00:00
version = "1.11.1";
2018-02-27 15:35:57 +00:00
# No tests in archive
doCheck = false;
src = fetchPypi {
inherit pname version;
2019-02-14 07:37:33 +00:00
sha256 = "4aea003270831cceb8a90ff27c4031da6ead7ec1886023b80ce0dfe0adf61533";
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;
};
}