nixpkgs/pkgs/development/python-modules/selectors34/default.nix
volth f3282c8d1e treewide: remove unused variables (#63177)
* treewide: remove unused variables

* making ofborg happy
2019-06-16 19:59:05 +00:00

32 lines
646 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, python
, six
}:
buildPythonPackage rec {
name = "${pname}-${version}";
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 ];
};
}