summary refs log tree commit diff
path: root/pkgs/development/python-modules/selectors34/default.nix
blob: ea3b403fdaed61748247aa20bf40d13bd12b7c61 (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
{ lib, 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 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 ];
    };
}