summary refs log tree commit diff
path: root/pkgs/development/python-modules/selectors34/default.nix
blob: 7bb66be3096ece52fe0c1f6ff8c3e7f958adcdac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv
, buildPythonPackage
, fetchPypi
, python
, six
}:

buildPythonPackage rec {
  pname = "selectors34";
  version = "1.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "09f5066337f8a76fb5233f267873f89a27a17c10bf79575954894bb71686451c";
  };

  propagatedBuildInputs = [ six ];

  checkPhase = ''
    ${python.interpreter} setup.py test
  '';

  meta = with stdenv.lib; {
    description = "A backport of the selectors module from Python 3.4";
    homepage = https://github.com/berkerpeksag/selectors34;
    license = licenses.psfl;
    maintainers = with maintainers; [ prusnak ];
    };
}