pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / development / python-modules / decorator / default.nix
blob5a0bc26763a462e5e32c67a29c8c950fe3466c56
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pytestCheckHook,
6 }:
8 buildPythonPackage rec {
9   pname = "decorator";
10   version = "5.1.1";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-Y3mWIRA2tjhe+RQ15PriKYlHL51XH6uoknuoJTrLwzA=";
16   };
18   pythonImportsCheck = [ "decorator" ];
20   nativeCheckInputs = [ pytestCheckHook ];
22   pytestFlagsArray = [ "src/tests/test.py" ];
24   meta = with lib; {
25     homepage = "https://github.com/micheles/decorator";
26     description = "Better living through Python with decorators";
27     license = licenses.bsd2;
28     maintainers = [ ];
29   };