aboutsummaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/portalocker/default.nix
blob: 89c6b8ba58904d30d7b498fded1b25c8f15a1687 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "portalocker";
  version = "1.2.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "17yvlk1fagd0j1qbkk0znq5hbh2kd5p36i77krjwaahfv79mcaiz";
  };

  doCheck = false;

  meta = with stdenv.lib; {
    description = "Wraps the portalocker recipe for easy usage";
    homepage = https://github.com/WoLpH/portalocker;
    license = licenses.psfl;
    maintainers = with maintainers; [ stesie ];
  };
}