mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
29 lines
644 B
Nix
29 lines
644 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pytest
|
|
, tornado
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytest-tornado";
|
|
version = "0.8.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0ncaq7icijls6qh66kv19w3i9av2wnmaycfr4yadyybajr8yvffz";
|
|
};
|
|
|
|
# package has no tests
|
|
doCheck = false;
|
|
|
|
propagatedBuildInputs = [ pytest tornado ];
|
|
|
|
meta = with lib; {
|
|
description = "A py.test plugin providing fixtures and markers to simplify testing of asynchronous tornado applications.";
|
|
homepage = "https://github.com/eugeniy/pytest-tornado";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ ixxie ];
|
|
};
|
|
}
|